OSDN Git Service

LDP: Update original to LDP v3.79
[linuxjm/LDP_man-pages.git] / original / man3 / iswgraph.3
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  1999-07-25 "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 .sp
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
57 if
58 .I wc
59 is a wide character
60 belonging to the wide-character class "graph".
61 Otherwise, it returns zero.
62 .SH CONFORMING TO
63 C99.
64 .SH NOTES
65 The behavior of
66 .BR iswgraph ()
67 depends on the
68 .B LC_CTYPE
69 category of the
70 current locale.
71 .SH SEE ALSO
72 .BR isgraph (3),
73 .BR iswctype (3)
74 .SH COLOPHON
75 This page is part of release 3.79 of the Linux
76 .I man-pages
77 project.
78 A description of the project,
79 information about reporting bugs,
80 and the latest version of this page,
81 can be found at
82 \%http://www.kernel.org/doc/man\-pages/.