iswspace
From cppreference.com
Defined in header <wctype.h>
|
||
int iswspace( wint_t ch ); |
(since C95) | |
Checks if the given wide character is a whitespace character, i.e. either space (0x20
), form feed (0x0c
), line feed (0x0a
), carriage return (0x0d
), horizontal tab (0x09
), vertical tab (0x0b
) or any whitespace character specific to the current locale.
Parameters
ch | - | wide character |
Return value
Non-zero value if the wide character is a whitespace character, zero otherwise.