getwc (3) Linux Manual Page
fgetwc, getwc – read a wide character from a FILE stream Synopsis#include <stdio.h> #include <wchar.h> wint_t fgetwc(FILE *stream); wint_t getwc(FILE *stream);DescriptionThe fgetwc() function is the wide-character equivalent of the fgetc(3) function. It reads a wide character from stream and returns it. If the end of stream is reached, or if ferror(stream) becomes true, it returns…
