std::fputwc
Da cppreference.com.
|
|
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
<metanoindex/>
<tbody> </tbody>| Elemento definito nell'header <cwchar>
|
||
wint_t fputwc( wchar_t ch, FILE *stream ); wint_t putwc( wchar_t ch, FILE *stream ); |
||
Scrive un
ch ampio carattere a stream data uscita flusso. putwc() può essere implementata come macro e può valutare stream più di una volta.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.
Parametri
| ch | - | carattere esteso da scrivere
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 | - | il flusso di output
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. |
Valore di ritorno
ch in caso di successo, WEOF in caso di fallimento. Se si verifica un errore di codifica, errno è impostato su 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.
Vedi anche
scrive un carattere a un flusso di file 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. (funzione) | |
scrive una stringa bersaglio un flusso di file 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. (funzione) | |
ottiene un carattere esteso da un flusso di file 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. (funzione) | |
C documentation for fputwc
| |