wait.2: Add ESRCH for when pid == INT_MIN
[man-pages.git] / man3 / iswgraph.3
blobad80bf647c6dac1ed620722ccf248402cc922b85
1 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2 .\"
3 .\" %%%LICENSE_START(GPLv2+_DOC_ONEPARA)
4 .\" This is free documentation; you can redistribute it and/or
5 .\" modify it under the terms of the GNU General Public License as
6 .\" published by the Free Software Foundation; either version 2 of
7 .\" the License, or (at your option) any later version.
8 .\" %%%LICENSE_END
9 .\"
10 .\" References consulted:
11 .\"   GNU glibc-2 source code and manual
12 .\"   Dinkumware C library reference http://www.dinkumware.com/
13 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
14 .\"   ISO/IEC 9899:1999
15 .\"
16 .TH ISWGRAPH 3  2021-03-22 "GNU" "Linux Programmer's Manual"
17 .SH NAME
18 iswgraph \- test for graphic wide character
19 .SH SYNOPSIS
20 .nf
21 .B #include <wctype.h>
22 .PP
23 .BI "int iswgraph(wint_t " wc );
24 .fi
25 .SH DESCRIPTION
26 The
27 .BR iswgraph ()
28 function is the wide-character equivalent of the
29 .BR isgraph (3)
30 function.
31 It tests whether
32 .I wc
33 is a wide character
34 belonging to the wide-character class "graph".
35 .PP
36 The wide-character class "graph" is a subclass of the wide-character class
37 "print".
38 .PP
39 Being a subclass of the wide-character class "print",
40 the wide-character class
41 "graph" is disjoint from the wide-character class "cntrl".
42 .PP
43 The wide-character class "graph" is disjoint from the wide-character class
44 "space" and therefore also disjoint from its subclass "blank".
45 .\" Note: UNIX98 (susv2/xbd/locale.html) says that "graph" and "space" may
46 .\" have characters in common, except U+0020. But C99 (ISO/IEC 9899:1999
47 .\" section 7.25.2.1.10) says that "space" and "graph" are disjoint.
48 .PP
49 The wide-character class "graph" contains all the wide characters from the
50 wide-character class "print" except the space character.
51 It therefore contains
52 the wide-character classes "alnum" and "punct".
53 .SH RETURN VALUE
54 The
55 .BR iswgraph ()
56 function returns nonzero
58 .I wc
59 is a wide character
60 belonging to the wide-character class "graph".
61 Otherwise, it returns zero.
62 .SH ATTRIBUTES
63 For an explanation of the terms used in this section, see
64 .BR attributes (7).
65 .ad l
66 .nh
67 .TS
68 allbox;
69 lbx lb lb
70 l l l.
71 Interface       Attribute       Value
73 .BR iswgraph ()
74 T}      Thread safety   MT-Safe locale
75 .TE
76 .hy
77 .ad
78 .sp 1
79 .SH CONFORMING TO
80 POSIX.1-2001, POSIX.1-2008, C99.
81 .SH NOTES
82 The behavior of
83 .BR iswgraph ()
84 depends on the
85 .B LC_CTYPE
86 category of the
87 current locale.
88 .SH SEE ALSO
89 .BR isgraph (3),
90 .BR iswctype (3)