xref: /freebsd/lib/libc/locale/isupper.3 (revision dc36d6f9bb1753f3808552f3afd30eda9a7b206a)
158f0484fSRodney W. Grimes.\" Copyright (c) 1991, 1993
258f0484fSRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
358f0484fSRodney W. Grimes.\"
458f0484fSRodney W. Grimes.\" This code is derived from software contributed to Berkeley by
558f0484fSRodney W. Grimes.\" the American National Standards Committee X3, on Information
658f0484fSRodney W. Grimes.\" Processing Systems.
758f0484fSRodney W. Grimes.\"
858f0484fSRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
958f0484fSRodney W. Grimes.\" modification, are permitted provided that the following conditions
1058f0484fSRodney W. Grimes.\" are met:
1158f0484fSRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
1258f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
1358f0484fSRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
1458f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
1558f0484fSRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
16fbbd9655SWarner Losh.\" 3. Neither the name of the University nor the names of its contributors
1758f0484fSRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
1858f0484fSRodney W. Grimes.\"    without specific prior written permission.
1958f0484fSRodney W. Grimes.\"
2058f0484fSRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2158f0484fSRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2258f0484fSRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2358f0484fSRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2458f0484fSRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2558f0484fSRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2658f0484fSRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2758f0484fSRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2858f0484fSRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2958f0484fSRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3058f0484fSRodney W. Grimes.\" SUCH DAMAGE.
3158f0484fSRodney W. Grimes.\"
32*77e42493SJose Luis Duran.Dd December 19, 2022
3358f0484fSRodney W. Grimes.Dt ISUPPER 3
3458f0484fSRodney W. Grimes.Os
3558f0484fSRodney W. Grimes.Sh NAME
36*77e42493SJose Luis Duran.Nm isupper ,
37*77e42493SJose Luis Duran.Nm isupper_l
3858f0484fSRodney W. Grimes.Nd upper-case character test
3925bb73e0SAlexey Zelkin.Sh LIBRARY
4025bb73e0SAlexey Zelkin.Lb libc
4158f0484fSRodney W. Grimes.Sh SYNOPSIS
4232eef9aeSRuslan Ermilov.In ctype.h
4358f0484fSRodney W. Grimes.Ft int
44330f606eSBruce Evans.Fn isupper "int c"
45*77e42493SJose Luis Duran.Ft int
46*77e42493SJose Luis Duran.Fn isupper_l "int c" "locale_t loc"
4758f0484fSRodney W. Grimes.Sh DESCRIPTION
4858f0484fSRodney W. GrimesThe
4958f0484fSRodney W. Grimes.Fn isupper
50*77e42493SJose Luis Duranand
51*77e42493SJose Luis Duran.Fn isupper_l
52*77e42493SJose Luis Duranfunctions test for any upper-case letter.
53a385e04bSTim J. RobbinsThe value of the argument must be representable as an
54110e1704SRuslan Ermilov.Vt "unsigned char"
55199b1670SAndrey A. Chernovor the value of
56199b1670SAndrey A. Chernov.Dv EOF .
57a385e04bSTim J. Robbins.Pp
5899d751fbSSheldon HearnIn the ASCII character set, this includes the following characters
5999d751fbSSheldon Hearn(with their numeric values shown in octal):
6058f0484fSRodney W. Grimes.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__
61748611c9SJoel Dahl.It "\&101\ ``A''" Ta "102\ ``B''" Ta "103\ ``C''" Ta "104\ ``D''" Ta "105\ ``E''"
62748611c9SJoel Dahl.It "\&106\ ``F''" Ta "107\ ``G''" Ta "110\ ``H''" Ta "111\ ``I''" Ta "112\ ``J''"
63748611c9SJoel Dahl.It "\&113\ ``K''" Ta "114\ ``L''" Ta "115\ ``M''" Ta "116\ ``N''" Ta "117\ ``O''"
64748611c9SJoel Dahl.It "\&120\ ``P''" Ta "121\ ``Q''" Ta "122\ ``R''" Ta "123\ ``S''" Ta "124\ ``T''"
65748611c9SJoel Dahl.It "\&125\ ``U''" Ta "126\ ``V''" Ta "127\ ``W''" Ta "130\ ``X''" Ta "131\ ``Y''"
66748611c9SJoel Dahl.It "\&132\ ``Z''" Ta \& Ta \& Ta \& Ta \&
6758f0484fSRodney W. Grimes.El
68*77e42493SJose Luis Duran.Pp
69*77e42493SJose Luis DuranThe
70*77e42493SJose Luis Duran.Fn isupper_l
71*77e42493SJose Luis Duranfunction takes an explicit locale argument, whereas the
72*77e42493SJose Luis Duran.Fn isupper
73*77e42493SJose Luis Duranfunction uses the current global or per-thread locale.
7458f0484fSRodney W. Grimes.Sh RETURN VALUES
7558f0484fSRodney W. GrimesThe
7658f0484fSRodney W. Grimes.Fn isupper
77*77e42493SJose Luis Duranand
78*77e42493SJose Luis Duran.Fn isupper_l
79*77e42493SJose Luis Duranfunctions return zero if the character tests false and
80*77e42493SJose Luis Duranreturn non-zero if the character tests true.
81d9e5246bSTim J. Robbins.Sh COMPATIBILITY
820db74aa4STim J. RobbinsThe
83d9e5246bSTim J. Robbins.Bx 4.4
840db74aa4STim J. Robbinsextension of accepting arguments outside of the range of the
850db74aa4STim J. Robbins.Vt "unsigned char"
86b9b90a13STim J. Robbinstype in locales with large character sets is considered obsolete
87b9b90a13STim J. Robbinsand may not be supported in future releases.
880db74aa4STim J. RobbinsThe
89d9e5246bSTim J. Robbins.Fn iswupper
90*77e42493SJose Luis Duranor
91*77e42493SJose Luis Duran.Fn iswupper_l
92b9b90a13STim J. Robbinsfunction should be used instead.
9358f0484fSRodney W. Grimes.Sh SEE ALSO
9458f0484fSRodney W. Grimes.Xr ctype 3 ,
95*77e42493SJose Luis Duran.Xr ctype_l 3 ,
96d9e5246bSTim J. Robbins.Xr iswupper 3 ,
97*77e42493SJose Luis Duran.Xr iswupper_l 3 ,
98b91cc296STim Vanderhoek.Xr toupper 3 ,
99*77e42493SJose Luis Duran.Xr toupper_l 3 ,
100*77e42493SJose Luis Duran.Xr xlocale 3 ,
10158f0484fSRodney W. Grimes.Xr ascii 7
10258f0484fSRodney W. Grimes.Sh STANDARDS
10358f0484fSRodney W. GrimesThe
104064f0074SMike Pritchard.Fn isupper
10558f0484fSRodney W. Grimesfunction conforms to
106588a200cSRuslan Ermilov.St -isoC .
1074b7f35dbSGordon Bergling.Sh HISTORY
1084b7f35dbSGordon BerglingThe
1094b7f35dbSGordon Bergling.Fn isupper
1104b7f35dbSGordon Berglingfunction first appeared in
1114b7f35dbSGordon Bergling.At v7 .
112