1994-05-27 05:00:24 +00:00
|
|
|
.\" Copyright (c) 1989, 1991, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" This code is derived from software contributed to Berkeley by
|
|
|
|
.\" the American National Standards Committee X3, on Information
|
|
|
|
.\" Processing Systems.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\" 4. Neither the name of the University nor the names of its contributors
|
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" @(#)toupper.3 8.1 (Berkeley) 6/4/93
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1994-05-27 05:00:24 +00:00
|
|
|
.\"
|
2010-07-25 13:32:19 +00:00
|
|
|
.Dd July 25, 2010
|
1994-05-27 05:00:24 +00:00
|
|
|
.Dt TOUPPER 3
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm toupper
|
|
|
|
.Nd lower case to upper case letter conversion
|
2000-04-21 09:42:15 +00:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libc
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh SYNOPSIS
|
2001-10-01 16:09:29 +00:00
|
|
|
.In ctype.h
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ft int
|
|
|
|
.Fn toupper "int c"
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Fn toupper
|
2001-07-15 07:53:42 +00:00
|
|
|
function converts a lower-case letter to the corresponding
|
1994-05-27 05:00:24 +00:00
|
|
|
upper-case letter.
|
2005-07-17 03:37:00 +00:00
|
|
|
The argument must be representable as an
|
2005-11-17 13:00:00 +00:00
|
|
|
.Vt "unsigned char"
|
2000-07-03 13:03:15 +00:00
|
|
|
or the value of
|
|
|
|
.Dv EOF .
|
|
|
|
.Sh RETURN VALUES
|
1994-05-27 05:00:24 +00:00
|
|
|
If the argument is a lower-case letter, the
|
|
|
|
.Fn toupper
|
|
|
|
function returns the corresponding upper-case letter if there is
|
2010-07-25 13:32:19 +00:00
|
|
|
one; otherwise, the argument is returned unchanged.
|
2002-10-03 11:14:00 +00:00
|
|
|
.Sh COMPATIBILITY
|
2004-08-21 07:37:08 +00:00
|
|
|
The
|
2002-10-03 11:14:00 +00:00
|
|
|
.Bx 4.4
|
2004-08-21 07:37:08 +00:00
|
|
|
extension of accepting arguments outside of the range of the
|
|
|
|
.Vt "unsigned char"
|
|
|
|
type in locales with large character sets is considered obsolete
|
|
|
|
and may not be supported in future releases.
|
|
|
|
The
|
2002-10-03 11:14:00 +00:00
|
|
|
.Fn towupper
|
2004-08-21 07:37:08 +00:00
|
|
|
function should be used instead.
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh SEE ALSO
|
2002-01-11 15:39:50 +00:00
|
|
|
.Xr ctype 3 ,
|
1994-05-27 05:00:24 +00:00
|
|
|
.Xr isupper 3 ,
|
2002-10-03 11:14:00 +00:00
|
|
|
.Xr towupper 3
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh STANDARDS
|
|
|
|
The
|
1995-12-28 21:06:07 +00:00
|
|
|
.Fn toupper
|
1994-05-27 05:00:24 +00:00
|
|
|
function conforms to
|
2001-02-26 13:23:47 +00:00
|
|
|
.St -isoC .
|