std::ungetwc
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 ungetc( wint_t ch, FILE *stream ); |
||
Pone el
ch
caracteres anchos de nuevo a la secuencia de archivo dado . Original:
Puts the wide character
ch
back to the given file stream. 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.
Sólo un retroceso carácter ancho está garantizada .
Original:
Only one wide character pushback is guaranteed.
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 | - | carácter ancho a volver a poner
Original: wide character to be put back The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
stream | - | archivo continuo para poner el carácter amplio volver
Original: file stream to put the wide character back to 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
En caso de éxito se devuelve
ch
.Original:
On success
ch
is returned.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.
En WEOF fallo se devuelve y la secuencia dada se mantiene sin cambios .
Original:
On failure WEOF is returned and the given stream remains unchanged.
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] Ver también
pone un personaje nuevo en una secuencia de archivo Original: puts a character back into 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 ungetwc
|