std::fputwc
Aus 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. |
definiert in Header <cwchar>
|
||
wint_t fputwc( wchar_t ch, FILE *stream ); wint_t putwc( wchar_t ch, FILE *stream ); |
||
Schreibt einen Multibyte-Zeichen
ch
an die angegebene Ausgabe-Stream stream
. putwc() kann als Makro implementiert werden und können mehr als einmal stream
auszuwerten .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.
[Bearbeiten] Parameter
ch | - | breite Zeichen geschrieben werden
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 | - | die Ausgabe-Stream
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. |
[Bearbeiten] Rückgabewert
ch
bei Erfolg WEOF im Fehlerfall. Wenn eine Codierung Fehler auftritt, wird errno um EILSEQ
gesetzt .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.
[Bearbeiten] Siehe auch
Schreibt ein Zeichen in einem Datei-Stream 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. (Funktion) | |
schreibt ein breites String in eine Datei-Stream 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. (Funktion) | |
erhält eine breite Zeichen aus einem Datei-Stream 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. (Funktion) | |
C documentation for fputwc
|