std::fputwc
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
| Definido en el archivo de encabezado <cwchar>
|
||
wint_t fputwc( wchar_t ch, FILE *stream ); wint_t putwc( wchar_t ch, FILE *stream ); |
||
Escribe un
ch carácter ancho a la salida stream flujo dado. putwc() puede ser implementado como una macro y puede evaluar stream más de una 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.
Parámetros
| ch | - | carácter ancho a 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 | - | el flujo de salida
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 en caso de éxito, WEOF en caso de fallo. Si se produce un error de codificación, errno se establece 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.
Ver también
Escribe un carácter en una secuencia de archivo 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. (función) | |
escribe una cadena ancha para una secuencia de archivo 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. (función) | |
recibe un carácter ancho de una secuencia de archivo 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. (función) | |
Documentación de C para fputwc
| |