iswspace
iswspace is a wide-character classification function in the C standard library. It tests whether a given wide character is considered whitespace in the current locale. The function is declared in the header <wctype.h> and takes a wint_t argument, returning a nonzero value if the character is classified as whitespace, and zero otherwise.
The set of characters that count as whitespace is locale-dependent. In the default C locale it typically
Usage and portability: iswspace compares wide characters, so it is the wide-character counterpart to isspace. In
Notes: The argument wc should be a wide character value representable as a wint_t. Passing an invalid