1ISWGRAPH(3) Linux Programmer's Manual ISWGRAPH(3)
2
3
4
6 iswgraph - test for graphic wide character
7
9 #include <wctype.h>
10
11 int iswgraph(wint_t wc);
12
14 The iswgraph() function is the wide-character equivalent of the
15 isgraph(3) function. It tests whether wc is a wide character belonging
16 to the wide-character class "graph".
17
18 The wide-character class "graph" is a subclass of the wide-character
19 class "print".
20
21 Being a subclass of the wide-character class "print", the wide-charac‐
22 ter class "graph" is disjoint from the wide-character class "cntrl".
23
24 The wide-character class "graph" is disjoint from the wide-character
25 class "space" and therefore also disjoint from its subclass "blank".
26
27 The wide-character class "graph" contains all the wide characters from
28 the wide-character class "print" except the space character. It there‐
29 fore contains the wide-character classes "alnum" and "punct".
30
32 The iswgraph() function returns nonzero if wc is a wide character
33 belonging to the wide-character class "graph". Otherwise it returns
34 zero.
35
37 C99.
38
40 The behavior of iswgraph() depends on the LC_CTYPE category of the cur‐
41 rent locale.
42
44 isgraph(3), iswctype(3)
45
47 This page is part of release 3.53 of the Linux man-pages project. A
48 description of the project, and information about reporting bugs, can
49 be found at http://www.kernel.org/doc/man-pages/.
50
51
52
53GNU 1999-07-25 ISWGRAPH(3)