The Wayback Machine - https://web.archive.org/web/20160112080623/http://en.cppreference.com:80/w/cpp/io/c/ungetwc
Namespaces
Variants
Views
Actions

std::ungetwc

From cppreference.com
< cpp‎ | io‎ | c
 
 
 
 
Defined in header <cwchar>
wint_t ungetwc( wint_t ch, std::FILE* stream );

Puts the wide character ch back to the given file stream. Only one wide character pushback is guaranteed.

[edit] Parameters

ch - wide character to be put back
stream - file stream to put the wide character back to

[edit] Return value

On success ch is returned.

On failure WEOF is returned and the given stream remains unchanged.

[edit] See also

puts a character back into a file stream
(function) [edit]
gets a wide character from a file stream
(function) [edit]
C documentation for ungetwc
Morty Proxy This is a proxified and sanitized view of the page, visit original site.