Espacios de nombres
Variantes
Acciones

setbuf

De cppreference.com
< c‎ | io
 
 
File input/output
Funciones
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Acceso a archivos
Original:
File access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Directo de entrada / salida
Original:
Direct input/output
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Entrada sin formato / salida
Original:
Unformatted input/output
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Formato de entrada / salida
Original:
Formatted input/output
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Presentar posicionamiento
Original:
File positioning
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Gestión de errores
Original:
Error handling
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Las operaciones en los archivos
Original:
Operations on files
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
Definido en el archivo de encabezado <stdio.h>
void setbuf(FILE*stream, char*buffer );
Establece el búfer interno que se utilizará para las operaciones de ruta. Debe ser al menos caracteres BUFSIZ largo .
Original:
Sets the internal buffer to use for stream operations. It should be at least BUFSIZ characters long.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Si buffer no es nulo, lo que equivale a setvbuf(stream, buffer, _IOFBF, BUFSIZ)
Original:
If buffer is not null, equivalent to setvbuf(stream, buffer, _IOFBF, BUFSIZ)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Si buffer es nulo, lo que equivale a setvbuf(stream, NULL, _IONBF, 0), que se apaga buffering .
Original:
If buffer is null, equivalent to setvbuf(stream, NULL, _IONBF, 0), which turns off buffering.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Parámetros

stream -
la secuencia de archivo para configurar el búfer
Original:
the file stream to set the buffer to
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
buffer -
puntero a un búfer para el flujo de usar. Si NULL se suministra, el tampón está apagado
Original:
pointer to a buffer for the stream to use. If NULL is supplied, the buffering is turned off
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Valor de retorno

Ninguno .
Original:
None.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Ver también

establece el tampón y su tamaño para una secuencia de archivo
Original:
sets the buffer and its size for a file stream
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función)[editar]
close