]> git.saurik.com Git - apple/libc.git/blame - locale/toupper.3
Libc-594.9.4.tar.gz
[apple/libc.git] / locale / toupper.3
CommitLineData
224c7076 1.\" Copyright (c) 1989, 1991, 1993
e9ce8d39
A
2.\" The Regents of the University of California. All rights reserved.
3.\"
224c7076
A
4.\" This code is derived from software contributed to Berkeley by
5.\" the American National Standards Committee X3, on Information
6.\" Processing Systems.
7.\"
e9ce8d39
A
8.\" Redistribution and use in source and binary forms, with or without
9.\" modification, are permitted provided that the following conditions
10.\" are met:
11.\" 1. Redistributions of source code must retain the above copyright
12.\" notice, this list of conditions and the following disclaimer.
13.\" 2. Redistributions in binary form must reproduce the above copyright
14.\" notice, this list of conditions and the following disclaimer in the
15.\" documentation and/or other materials provided with the distribution.
16.\" 3. All advertising materials mentioning features or use of this software
17.\" must display the following acknowledgement:
18.\" This product includes software developed by the University of
19.\" California, Berkeley and its contributors.
20.\" 4. Neither the name of the University nor the names of its contributors
21.\" may be used to endorse or promote products derived from this software
22.\" without specific prior written permission.
23.\"
24.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34.\" SUCH DAMAGE.
35.\"
224c7076
A
36.\" @(#)toupper.3 8.1 (Berkeley) 6/4/93
37.\" $FreeBSD: src/lib/libc/locale/toupper.3,v 1.16 2004/08/21 07:37:08 tjr Exp $
e9ce8d39 38.\"
224c7076
A
39.Dd August 21, 2004
40.Dt TOUPPER 3
e9ce8d39
A
41.Os
42.Sh NAME
224c7076
A
43.Nm toupper ,
44.Nm toupper_l
45.Nd lower case to upper case letter conversion
e9ce8d39
A
46.Sh LIBRARY
47.Lb libc
48.Sh SYNOPSIS
224c7076
A
49.In ctype.h
50.Ft int
51.Fo toupper
52.Fa "int c"
53.Fc
54.In ctype.h
55.In xlocale.h
e9ce8d39 56.Ft int
224c7076
A
57.Fo toupper_l
58.Fa "int c"
59.Fa "locale_t loc"
60.Fc
e9ce8d39
A
61.Sh DESCRIPTION
62The
224c7076
A
63.Fn toupper
64function converts a lower-case letter to the corresponding
65upper-case letter.
66For single C
67.Va char Ns s
68locales (see
69.Xr multibyte 3 ) ,
70the value of the argument is
71representable as an
72.Li unsigned char
73or the value of
74.Dv EOF .
5b2abdfb 75.Pp
224c7076
A
76Although the
77.Fn toupper
78function uses the current locale, the
79.Fn toupper_l
80function may be passed a locale directly. See
81.Xr xlocale 3
82for more information.
e9ce8d39 83.Sh RETURN VALUES
224c7076
A
84If the argument is a lower-case letter, the
85.Fn toupper
86function returns the corresponding upper-case letter if there is
87one; otherwise, the argument is returned unchanged.
88.Sh COMPATIBILITY
5b2abdfb 89The
224c7076
A
90.Bx 4.4
91extension of accepting arguments outside of the range of the
92.Vt "unsigned char"
93type in locales with large character sets is considered obsolete
94and may not be supported in future releases.
e9ce8d39 95The
224c7076
A
96.Fn towupper
97function should be used instead.
98.Sh SEE ALSO
99.Xr ctype 3 ,
100.Xr isupper 3 ,
101.Xr multibyte 3 ,
102.Xr towupper 3 ,
103.Xr xlocale 3
104.Sh STANDARDS
5b2abdfb 105The
224c7076
A
106.Fn toupper
107function conforms to
108.St -isoC .