OSDN Git Service

356f867cd85126a18c3df17d87e86cba797e0fc5
[linuxjm/LDP_man-pages.git] / draft / man3 / iswlower.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:40:16 JST 1999
16 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\" Updated Sat Jan  8 01:52:20 JST 2000
18 .\"           by Kentaro Shirakata <argrath@yo.rim.or.jp>
19 .\"
20 .TH ISWLOWER 3 1999-07-25 "GNU" "Linux Programmer's Manual"
21 .\"O .SH NAME
22 .SH 名前
23 .\"O iswlower \- test for lowercase wide character
24 iswlower \- 小文字ワイド文字かどうかを調べる
25 .\"O .SH SYNOPSIS
26 .SH 書式
27 .nf
28 .B #include <wctype.h>
29 .sp
30 .BI "int iswlower(wint_t " wc );
31 .fi
32 .\"O .SH DESCRIPTION
33 .SH 説明
34 .\"O The
35 .\"O .BR iswlower ()
36 .\"O function is the wide-character equivalent of the
37 .\"O .BR islower (3)
38 .\"O function.
39 .\"O It tests whether \fIwc\fP is a wide character
40 .\"O belonging to the wide-character class "lower".
41 .BR iswlower ()
42 関数は、
43 .BR islower (3)
44 に対応するワイド文字関数である。
45 この関数は、\fIwc\fP が文字クラス "lower" に属するワイド文字かどうかを
46 調べる。
47 .PP
48 .\"O The wide-character class "lower" is a subclass of the wide-character class
49 .\"O "alpha", and therefore also a subclass
50 .\"O of the wide-character class "alnum", of
51 .\"O the wide-character class "graph" and of the wide-character class "print".
52 ワイド文字クラス "lower" はワイド文字クラス "alpha" のサブクラスであり、
53 したがってワイド文字クラス "alnum" とその親クラスである "graph", さらに
54 その親クラスである "print" のサブクラスでもある。
55 .PP
56 .\"O Being a subclass of the wide-character class "print",
57 .\"O the wide-character class
58 .\"O "lower" is disjoint from the wide-character class "cntrl".
59 ワイド文字クラス "print" のサブクラスなので、ワイド文字クラス "lower"
60 はワイド文字クラス "cntrl" と共通部分を持たない。
61 .PP
62 .\"O Being a subclass of the wide-character class "graph",
63 .\"O the wide-character class "lower" is disjoint from the
64 .\"O wide-character class "space" and its subclass
65 .\"O "blank".
66 ワイド文字クラス "graph" のサブクラスなので、ワイド文字クラス "lower"
67 はワイド文字クラス "space" とそのサブクラスである "blank" と共通
68 部分を持たない。
69 .PP
70 .\"O Being a subclass of the wide-character class "alnum",
71 .\"O the wide-character class
72 .\"O "lower" is disjoint from the wide-character class "punct".
73 ワイド文字クラス "alnum" のサブクラスなので、ワイド文字クラス "lower"
74 はワイド文字クラス "punct" と共通部分を持たない。
75 .PP
76 .\"O Being a subclass of the wide-character class "alpha",
77 .\"O the wide-character class
78 .\"O "lower" is disjoint from the wide-character class "digit".
79 ワイド文字クラス "alpha" のサブクラスなので、ワイド文字クラス "lower"
80 はワイド文字クラス "digit" と共通部分を持たない。
81 .PP
82 .\"O The wide-character class "lower" contains at least
83 .\"O those characters \fIwc\fP
84 .\"O which are equal to \fItowlower(wc)\fP and different
85 .\"O from \fItowupper(wc)\fP.
86 ワイド文字クラス "lower" は少なくとも、\fIwc\fP と \fItowlower(wc)\fP
87 が等しくなり、かつ \fItowupper(wc)\fP と異なるような文字を含む。
88 .PP
89 .\"O The wide-character class "lower" always contains
90 .\"O at least the letters \(aqa\(aq to \(aqz\(aq.
91 ワイド文字クラス "lower" は少なくとも \(aqa\(aq から \(aqz\(aq を必ず含む。
92 .\"O .SH "RETURN VALUE"
93 .SH 返り値
94 .\"O The
95 .\"O .BR iswlower ()
96 .\"O function returns nonzero
97 .\"O if \fIwc\fP is a wide character
98 .\"O belonging to the wide-character class "lower".
99 .\"O Otherwise it returns zero.
100 .BR iswlower ()
101 関数は、\fIwc\fP がワイド文字クラス "lower" に属するワ
102 イド文字ならば 0 でない値を返す。そうでなければ 0 を返す。
103 .\"O .SH "CONFORMING TO"
104 .SH 準拠
105 C99.
106 .\"O .SH NOTES
107 .SH 注意
108 .\"O The behavior of
109 .\"O .BR iswlower ()
110 .\"O depends on the
111 .\"O .B LC_CTYPE
112 .\"O category of the
113 .\"O current locale.
114 .BR iswlower ()
115 の動作は現在のロケールの
116 .B LC_CTYPE
117 カテゴリに依存する。
118 .PP
119 .\"O This function is not very appropriate for dealing with Unicode characters,
120 .\"O because Unicode knows about three cases: upper, lower and title case.
121 この関数で Unicode を扱うのはあまり適切でない。
122 なぜなら、Unicode には
123 大文字 (upper case)・小文字 (lower case)・タイトル文字 (title case)
124 の 3 つが含まれているからである。
125 .\"O .SH "SEE ALSO"
126 .SH 関連項目
127 .BR islower (3),
128 .BR iswctype (3),
129 .BR towlower (3)