OSDN Git Service

(split) LDP man-pages の original/ を v3.29 に更新。
[linuxjm/LDP_man-pages.git] / original / 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 .TH ISWUPPER 3  1999-07-25 "GNU" "Linux Programmer's Manual"
15 .SH NAME
16 iswupper \- test for uppercase wide character
17 .SH SYNOPSIS
18 .nf
19 .B #include <wctype.h>
20 .sp
21 .BI "int iswupper(wint_t " wc );
22 .fi
23 .SH DESCRIPTION
24 The
25 .BR iswupper ()
26 function is the wide-character equivalent of the
27 .BR isupper (3)
28 function.
29 It tests whether \fIwc\fP is a wide character
30 belonging to the wide-character class "upper".
31 .PP
32 The wide-character class "upper" is a subclass of the wide-character class
33 "alpha", and therefore also a subclass of the wide-character class "alnum", of
34 the wide-character class "graph" and of the wide-character class "print".
35 .PP
36 Being a subclass of the wide-character class "print", the wide-character class
37 "upper" is disjoint from the wide-character class "cntrl".
38 .PP
39 Being a subclass of the wide-character class "graph", the wide-character class
40 "upper" is disjoint from the wide-character class "space" and its subclass
41 "blank".
42 .PP
43 Being a subclass of the wide-character class "alnum", the wide-character class
44 "upper" is disjoint from the wide-character class "punct".
45 .PP
46 Being a subclass of the wide-character class "alpha", the wide-character class
47 "upper" is disjoint from the wide-character class "digit".
48 .PP
49 The wide-character class "upper" contains at least those characters \fIwc\fP
50 which are equal to \fItowupper(wc)\fP and different from \fItowlower(wc)\fP.
51 .PP
52 The wide-character class "upper" always contains at least the
53 letters \(aqA\(aq to \(aqZ\(aq.
54 .SH "RETURN VALUE"
55 The
56 .BR iswupper ()
57 function returns nonzero if \fIwc\fP is a wide character
58 belonging to the wide-character class "upper".
59 Otherwise it returns zero.
60 .SH "CONFORMING TO"
61 C99.
62 .SH NOTES
63 The behavior of
64 .BR iswupper ()
65 depends on the
66 .B LC_CTYPE
67 category of the
68 current locale.
69 .PP
70 This function is not very appropriate for dealing with Unicode characters,
71 because Unicode knows about three cases: upper, lower and title case.
72 .SH "SEE ALSO"
73 .BR isupper (3),
74 .BR iswctype (3),
75 .BR towupper (3)