December 2005
Beginner to intermediate
618 pages
20h 19m
English
ungetwc
Pushes a wide character back onto a file buffer to be read next
#include <stdio.h> #include <wchar.h> wint_tungetwc( wint_twc, FILE *fp);
The ungetwc() function is
the wide-character version of ungetc(), and works analogously, returning
WEOF on failure or the wide
character pushed back onto the file buffer if successful.
See the example for the corresponding byte-character function,
ungetc().
Read now
Unlock full access