OSDN Git Service

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