1ISWBLANK(3) Linux Programmer's Manual ISWBLANK(3)
2
3
4
6 iswblank - test for whitespace wide character
7
9 #include <wctype.h>
10
11 int iswblank(wint_t wc);
12
14 The iswblank() function is the wide-character equivalent of the
15 isblank() function. It tests whether wc is a wide character belonging
16 to the wide character class "blank".
17
18 The wide character class "blank" is a subclass of the wide character
19 class "space".
20
21 Being a subclass of the wide character class "space", the wide characā
22 ter class "blank" is disjoint from the wide character class "graph" and
23 therefore also disjoint from its subclasses "alnum", "alpha", "upper",
24 "lower", "digit", "xdigit", "punct".
25
26 The wide character class "blank" always contains at least the space
27 character and the control character '\t'.
28
30 The iswblank() function returns non-zero if wc is a wide character
31 belonging to the wide character class "blank". Otherwise it returns
32 zero.
33
35 This function is a GNU extension.
36
38 isblank(3), iswctype(3)
39
41 The behaviour of iswblank() depends on the LC_CTYPE category of the
42 current locale.
43
44
45
46GNU 1999-07-25 ISWBLANK(3)