OSDN Git Service

c6f0e03b6b2149cbea585aa7aa5effeb3989e449
[linuxjm/LDP_man-pages.git] / draft / man3 / iswgraph.3
1 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2 .\"
3 .\" This is free documentation; you can redistribute it and/or
4 .\" modify it under the terms of the GNU General Public License as
5 .\" published by the Free Software Foundation; either version 2 of
6 .\" the License, or (at your option) any later version.
7 .\"
8 .\" References consulted:
9 .\"   GNU glibc-2 source code and manual
10 .\"   Dinkumware C library reference http://www.dinkumware.com/
11 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
12 .\"   ISO/IEC 9899:1999
13 .\"
14 .\" About this Japanese page, please contact to JM Project <JM@linux.or.jp>
15 .\" Translated Sat Sep  4 21:22:34 JST 1999
16 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\" Updated Sun Dec 26 19:31:38 JST 1999
18 .\"           by Kentaro Shirakata <argrath@yo.rim.or.jp>
19 .\"
20 .TH ISWGRAPH 3 1999-07-25 "GNU" "Linux Programmer's Manual"
21 .\"O .SH NAME
22 .SH 名前
23 .\"O iswgraph \- test for graphic wide character
24 iswgraph \- グラフィックワイド文字かどうかを調べる
25 .\"O .SH SYNOPSIS
26 .SH 書式
27 .nf
28 .B #include <wctype.h>
29 .sp
30 .BI "int iswgraph(wint_t " wc );
31 .fi
32 .\"O .SH DESCRIPTION
33 .SH 説明
34 .\"O The
35 .\"O .BR iswgraph ()
36 .\"O function is the wide-character equivalent of the
37 .\"O .BR isgraph (3)
38 .\"O function.
39 .\"O It tests whether \fIwc\fP is a wide character
40 .\"O belonging to the wide-character class "graph".
41 .BR iswgraph ()
42 関数は、
43 .BR isgraph (3)
44 に対応するワイド文字関数である。
45 この関数は、\fIwc\fP がワイド文字クラス "graph" に属するワイド文字かど
46 うかを調べる。
47 .PP
48 .\"O The wide-character class "graph" is disjoint from the wide-character class
49 .\"O "space" and therefore also disjoint from its subclass "blank".
50 ワイド文字クラス "graph" は、ワイド文字クラス "space" と共通部分を持た
51 ない。したがって、そのサブクラスである "blank" とも共通部分を
52 持たない。
53 .\" Note: UNIX98 (susv2/xbd/locale.html) says that "graph" and "space" may
54 .\" have characters in common, except U+0020. But C99 (ISO/IEC 9899:1999
55 .\" section 7.25.2.1.10) says that "space" and "graph" are disjoint.
56 .PP
57 .\"O The wide-character class "graph" is a subclass of the wide-character class
58 .\"O "print".
59 ワイド文字クラス "graph" は、ワイド文字クラス "print" のサブクラスであ
60 る。
61 .PP
62 .\"O Being a subclass of the wide-character class "print",
63 .\"O the wide-character class
64 .\"O "graph" is disjoint from the wide-character class "cntrl".
65 ワイド文字クラス "print" のサブクラスなので、ワイド文字クラス "graph"
66 はワイド文字クラス "cntrl" とは共通部分を持たない。
67 .PP
68 .\"O The wide-character class "graph" contains all the wide characters from the
69 .\"O wide-character class "print" except the space character.
70 .\"O It therefore contains
71 .\"O the wide-character classes "alnum" and "punct".
72 ワイド文字クラス "graph" は、ワイド文字クラス "print" に属する文字のう
73 ち空白文字を除く全てのワイド文字を含んでいる。したがって、
74 ワイド文字クラス "graph" にはワイド文字クラス "almun" と "punct" が含
75 まれる。
76 .\"O .SH "RETURN VALUE"
77 .SH 返り値
78 .\"O The
79 .\"O .BR iswgraph ()
80 .\"O function returns nonzero
81 .\"O if \fIwc\fP is a wide character
82 .\"O belonging to the wide-character class "graph".
83 .\"O Otherwise it returns zero.
84 .BR iswgraph ()
85 関数は、\fIwc\fP がワイド文字クラス "graph" に属するワ
86 イド文字ならば 0 でない値を返す。そうでなければ 0 を返す。
87 .\"O .SH "CONFORMING TO"
88 .SH 準拠
89 C99.
90 .\"O .SH NOTES
91 .SH 注意
92 .\"O The behavior of
93 .\"O .BR iswgraph ()
94 .\"O depends on the
95 .\"O .B LC_CTYPE
96 .\"O category of the
97 .\"O current locale.
98 .BR iswgraph ()
99 の動作は、現在のロケールの
100 .B LC_CTYPE
101 カテゴリに依存する。
102 .\"O .SH "SEE ALSO"
103 .SH 関連項目
104 .BR isgraph (3),
105 .BR iswctype (3)