Espacios de nombres
Variantes
Acciones

std::ungetwc

De cppreference.com
< cpp‎ | io‎ | c
 
 
Biblioteca de E/S
Manipuladores de E/S
E/S estilo C
Búferes
(en desuso en C++98)
Flujos
Abstracciones
E/S de archivos
E/S de cadenas
E/S de arrays
(en desuso en C++98)
(en desuso en C++98)
(en desuso en C++98)
Salida sincronizada
Tipos
Interfaz de categoría de error
(C++11)
 
 
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.
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.

[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.
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.

[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) [editar]
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) [editar]
Documentación de C para ungetwc