Namespace
Varianti

setbuf

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.
fwide
setbuf
setvbuf
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>
void setbuf( FILE *stream, char *buffer );
Consente di impostare il buffer interno da utilizzare per le operazioni di flusso. Dovrebbe essere almeno caratteri BUFSIZ lungo.
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.
Se buffer non è nullo, equivalente 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.
Se buffer è nullo, equivalente a setvbuf(stream, NULL, _IONBF, 0), che disattiva il 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.

[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. Se NULL è fornito, il buffer è spento
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.

[modifica] Valore di ritorno

Nessuno.
Original:
None.
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 e la dimensione di un flusso di file
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.

(funzione) [modifica]