setvbuf

Da cppreference.com.
< c‎ | io

 
 
File input/output
Funzioni
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Accesso ai file
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.
Diretta input / output
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.
fread
fwrite
Ingresso formattato / uscita
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.
Formattato di input / output
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.
File di posizionamento
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.
ftell
fgetpos
fseek
fsetpos
rewind
La gestione degli errori
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.
clearerr
feof
ferror
perror
Le operazioni sui file
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.
remove
rename
tmpfile
tmpnam
 
Elemento definito nell'header <stdio.h>
int setvbuf(FILE*stream, char*buffer, int mode, size_t size );
Consente di impostare il buffer interno del stream file dato flusso.
Original:
Sets the internal buffer of the given file stream stream.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Indice

[modifica]Parametri

stream -
il flusso di file per impostare il buffer
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 -
puntatore a un buffer per il flusso da utilizzare
Original:
pointer to a buffer for the stream to use
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
mode -
buffer modalità da utilizzare. Può essere uno dei seguenti valori:
_IOFBF full buffering
_IOLBF line buffering
_IONBF no buffering
Original:
buffering mode to use. It can be one of the following values:
_IOFBF full buffering
_IOLBF line buffering
_IONBF no buffering
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
size -
dimensione del buffer
Original:
size of the buffer
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifica]Valore di ritorno

0 di successo, diverso da zero in caso di fallimento.
Original:
0 on success or nonzero on failure.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifica]Note

Questa funzione può essere utilizzata solo dopo stream è stata associata a un file aperto, ma prima di qualsiasi altra operazione.
Original:
This function may only be used after stream has been associated with an open file, but before any other operation.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
buffer può essere null, nel qual caso questa chiamata ridimensiona solo il buffer interno.
Original:
buffer may be null, in which case this call only resizes the internal buffer.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifica]Vedi anche

imposta il buffer per un flusso di file
Original:
sets the buffer 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.

(funzione)[modifica]
C++ documentation for setvbuf
close