OSDN Git Service

(split) Import translated manuals from JM CVS Repository.
[linuxjm/LDP_man-pages.git] / original / man3 / towupper.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 TOWUPPER 3  1999-07-25 "GNU" "Linux Programmer's Manual"
15 .SH NAME
16 towupper \- convert a wide character to uppercase
17 .SH SYNOPSIS
18 .nf
19 .B #include <wctype.h>
20 .sp
21 .BI "wint_t towupper(wint_t " wc );
22 .fi
23 .SH DESCRIPTION
24 The
25 .BR towupper ()
26 function is the wide-character equivalent of the
27 .BR toupper (3)
28 function.
29 If \fIwc\fP is a wide character, it is converted to
30 uppercase.
31 Characters which do not have case are returned unchanged.
32 If \fIwc\fP is \fBWEOF\fP, \fBWEOF\fP is returned.
33 .SH "RETURN VALUE"
34 The
35 .BR towupper ()
36 function returns the uppercase equivalent of \fIwc\fP,
37 or \fBWEOF\fP if \fIwc\fP is \fBWEOF\fP.
38 .SH "CONFORMING TO"
39 C99.
40 .SH NOTES
41 The behavior of
42 .BR towupper ()
43 depends on the
44 .B LC_CTYPE
45 category of the
46 current locale.
47 .PP
48 This function is not very appropriate for dealing with Unicode characters,
49 because Unicode knows about three cases: upper, lower and title case.
50 .SH "SEE ALSO"
51 .BR iswupper (3),
52 .BR towctrans (3),
53 .BR towlower (3)