Inputs a wide string from a stream input/output file.
wchar_t *fgetws(wchar_t *restrict s, long n, FILE *fp);
s Pointer to storage area to which wide string is input
n Number of bytes of storage area to which wide string is input
The fgetws function is provided to support wide-character input to the fgets function.