Test for a whitespace wide character
#include <wctype.h> int iswspace( wint_t wc );
libc
The iswspace() function tests if the argument wc is a whitespace wide character of the class space. In the C locale, it includes the space character, \f form feed, \n newline or linefeed, \r carriage return, \t horizontal tab, \v vertical tab.
| Safety: | |
|---|---|
| Cancellation point | No |
| Interrupt handler | Yes |
| Signal handler | Yes |
| Thread | Yes |
The result is valid only for char arguments and WEOF.
"Character manipulation functions" and "Wide-character functions" in the summary of functions chapter.