fgetws(3) - Linux man page
Name
fgetws - read a wide-character string from a FILE streamSynopsis
#include <wchar.h> wchar_t *fgetws(wchar_t *ws, int n, FILE *stream);
Description
The programmer must ensure that there is room for at least n wide characters at ws.
For a nonlocking counterpart, see unlocked_stdio(3).
Return Value
The fgetws() function, if successful, returns ws. If end of stream was already reached or if an error occurred, it returns NULL.Conforming to
C99, POSIX.1-2001.Notes
The behavior of fgetws() depends on the LC_CTYPE category of the current locale.In the absence of additional information passed to the fopen(3) call, it is reasonable to expect that fgetws() will actually read a multibyte string from the stream and then convert it to a wide-character string.
This function is unreliable, because it does not permit to deal properly with null wide characters that may be present in the input.