Espaços nominais
Variantes
Ações

setvbuf

De cppreference.com
< c | io

<metanoindex/>

 
 
File input/output
Funções
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Arquivo de acesso
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.
Directa de entrada / saída
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.
Não formatado entrada / saída
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.
Formatado de entrada / saída
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.
Arquivo de posicionamento
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.
De tratamento de erros
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.
Operações em arquivos
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.
 
<tbody> </tbody>
Definido no cabeçalho <stdio.h>
int setvbuf( FILE *stream, char *buffer, int mode, size_t size );
Define o buffer interno do stream dado arquivo de fluxo.
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.

Parâmetros

stream -
o fluxo de arquivo para definir o buffer para
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 -
ponteiro para um buffer para o fluxo de usar
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 -
tamponante modo de usar. Pode ser um dos seguintes valores:
_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 -
tamanho do 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.

Valor de retorno

0 em caso de sucesso ou diferente de zero em caso de falha.
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.

Notas

Esta função só pode ser utilizado após stream tem sido associado com um arquivo aberto, mas antes de qualquer outra operação.
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 pode ser nulo, caso em que esta chamada apenas redimensiona o 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.

Veja também

define o buffer para um fluxo de arquivo
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.

(função) [edit]
C++ documentation for setvbuf