OSDN Git Service

288b96e52de76db387e770df5b9b591490a3f047
[linuxjm/LDP_man-pages.git] / draft / man3 / iswalpha.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 Wed Aug  31 22:40:19 JST 1999
16 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\" Updated Sun Dec 26 19:31:18 JST 1999
18 .\"           by Kentaro Shirakata <argrath@yo.rim.or.jp>
19 .\"
20 .TH ISWALPHA 3 1999-07-25 "GNU" "Linux Programmer's Manual"
21 .\"O .SH NAME
22 .SH 名前
23 .\"O iswalpha \- test for alphabetic wide character
24 iswalpha \- 英字ワイド文字かどうかを調べる
25 .\"O .SH SYNOPSIS
26 .SH 書式
27 .nf
28 .B #include <wctype.h>
29 .sp
30 .BI "int iswalpha(wint_t " wc );
31 .fi
32 .\"O .SH DESCRIPTION
33 .SH 説明
34 .\"O The
35 .\"O .BR iswalpha ()
36 .\"O function is the wide-character equivalent of the
37 .\"O .BR isalpha (3)
38 .\"O function.
39 .\"O It tests whether \fIwc\fP is a wide character
40 .\"O belonging to the wide-character class "alpha".
41 .BR iswalpha ()
42 関数は
43 .BR isalpha (3)
44 に対応するワイド文字関数である。
45 この関数は \fIwc\fP がワイド文字かどうかを調べる。
46 .PP
47 .\"O The wide-character class "alpha" is a subclass of the
48 .\"O wide-character class "alnum",
49 .\"O and therefore also a subclass of the wide-character class "graph" and
50 .\"O of the wide-character class "print".
51 ワイド文字クラス "alpha" は、ワイド文字クラス "alnum" のサブクラスであ
52 る。したがって、ワイド文字クラス "graph" とワイド文字クラス "print" の
53 サブクラスでもある。
54 .PP
55 .\"O Being a subclass of the wide-character class "print",
56 .\"O the wide-character class
57 .\"O "alpha" is disjoint from the wide-character class "cntrl".
58 ワイド文字クラス "print" のサブクラスなので、ワイド文字クラス "alpha"
59 はワイド文字クラス "cntrl" と共通部分を持たない。
60 .PP
61 .\"O Being a subclass of the wide-character class "graph",
62 .\"O the wide-character class "alpha" is disjoint from
63 .\"O the wide-character class "space" and its subclass "blank".
64 ワイド文字クラス "graph" のサブクラスなので、ワイド文字クラス "alpha"
65 はワイド文字クラス "space" とそのサブクラスである "blank" と共通
66 部分を持たない。
67 .PP
68 .\"O Being a subclass of the wide-character class "alnum",
69 .\"O the wide-character class "alpha" is disjoint from
70 .\"O the wide-character class "punct".
71 ワイド文字クラス "alnum" のサブクラスなので、ワイド文字クラス "alpha"
72 はワイド文字クラス "punct" と共通部分を持たない。
73 .PP
74 .\"O The wide-character class "alpha" is disjoint from the wide-character class
75 .\"O "digit".
76 ワイド文字クラス "alpha" は、ワイド文字クラス "digit" と共通部分を持たない。
77 .PP
78 .\"O The wide-character class "alpha" contains the wide-character classes "upper"
79 .\"O and "lower".
80 ワイド文字クラス "alpha" は、ワイド文字クラス "upper" と "lower" を含
81 む。
82 .PP
83 .\"O The wide-character class "alpha" always contains at least the
84 .\"O letters \(aqA\(aq to \(aqZ\(aq and \(aqa\(aq to \(aqz\(aq.
85 ワイド文字クラス "alpha" は、少なくとも \(aqA\(aq から \(aqZ\(aq,
86 \(aqa\(aq から \(aqz\(aq までの文字を常に含む。
87 .\"O .SH "RETURN VALUE"
88 .SH 返り値
89 .\"O The
90 .\"O .BR iswalpha ()
91 .\"O function returns nonzero
92 .\"O if \fIwc\fP is a wide character
93 .\"O belonging to the wide-character class "alpha".
94 .\"O Otherwise it returns zero.
95 .BR iswalpha ()
96 関数は、\fIwc\fP がワイド文字クラス "alpha" に属する
97 ワイド文字ならば 0 でない値を返す。それ以外の場合には 0 を返す。
98 .\"O .SH "CONFORMING TO"
99 .SH 準拠
100 C99.
101 .\"O .SH NOTES
102 .SH 注意
103 .\"O The behavior of
104 .\"O .BR iswalpha ()
105 .\"O depends on the
106 .\"O .B LC_CTYPE
107 .\"O category of the
108 .\"O current locale.
109 .BR iswalpha ()
110 の動作は、現在のロケールの
111 .B LC_CTYPE
112 カテゴリに依存する。
113 .\"O .SH "SEE ALSO"
114 .SH 関連項目
115 .BR isalpha (3),
116 .BR iswctype (3)