Espaços nominais
Variantes
Ações

fputwc

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 <wchar.h>
wint_t fputwc( wchar_t ch, FILE *stream ); wint_t putwc( wchar_t ch, FILE *stream );
Escreve um ch caracteres largos para o stream dado fluxo de saída. putwc() pode ser implementada como uma macro e pode avaliar stream mais de uma vez.
Original:
Writes a wide character ch to the given output stream stream. putwc() may be implemented as a macro and may evaluate stream more than once.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parâmetros

ch -
caracteres largos para ser escrito
Original:
wide character to be written
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
stream -
o fluxo de saída
Original:
the output stream
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

ch no sucesso WEOF, em caso de falha. Se um erro de codificação ocorre, errno está definido para EILSEQ.
Original:
ch on success, WEOF on failure. If an encoding error occurs, errno is set to EILSEQ.
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

escreve um personagem para um fluxo de arquivo
Original:
writes a character to 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]
escreve uma string de gama a um fluxo de arquivo
Original:
writes a wide string to 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]
recebe um caractere largo de um fluxo de arquivo
Original:
gets a wide character from 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]