std::fputwc
Da cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
Definido no cabeçalho <cwchar>
|
||
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.
You can help to correct and verify the translation. Click here for instructions.
[editar] 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. |
[editar] 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.
You can help to correct and verify the translation. Click here for instructions.
[editar] 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) | |
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) | |
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) | |
Documentação C para fputwc
|