std::fputwc
De 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. |
Déclaré dans l'en-tête <cwchar> | ||
wint_t fputwc(wchar_t ch, FILE *stream ); wint_t putwc(wchar_t ch, FILE *stream ); | ||
Écrit un caractère large
ch
à la stream
flux de sortie donné. putwc() peut être implémenté comme une macro et peut évaluer stream
plus d'une fois .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.
[modifier]Paramètres
ch | - | caractère large à écrire 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 | - | le flux de sortie 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. |
[modifier]Retourne la valeur
ch
en cas de succès, WEOF cas d'échec. Si une erreur de codage survient, errno est réglé sur EILSEQ
.Original:
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.
[modifier]Voir aussi
écrit un caractère dans un flux fichier 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. (fonction) | |
écrit une chaîne de large pour un flux de fichier 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. (fonction) | |
obtient un caractère large depuis un flux de fichier 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. (fonction) | |
C documentation for fputwc |