xref: /netbsd-src/lib/libc/gen/ctype.3 (revision cda4f8f6ee55684e8d311b86c99ea59191e6b74f)
1.\" Copyright (c) 1991 Regents of the University of California.
2.\" All rights reserved.
3.\"
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright
9.\"    notice, this list of conditions and the following disclaimer.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\"    notice, this list of conditions and the following disclaimer in the
12.\"    documentation and/or other materials provided with the distribution.
13.\" 3. All advertising materials mentioning features or use of this software
14.\"    must display the following acknowledgement:
15.\"	This product includes software developed by the University of
16.\"	California, Berkeley and its contributors.
17.\" 4. Neither the name of the University nor the names of its contributors
18.\"    may be used to endorse or promote products derived from this software
19.\"    without specific prior written permission.
20.\"
21.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31.\" SUCH DAMAGE.
32.\"
33.\"     from: @(#)ctype.3	6.5 (Berkeley) 4/19/91
34.\"	$Id: ctype.3,v 1.2 1993/07/30 08:35:32 mycroft Exp $
35.\"
36.Dd April 19, 1991
37.Dt CTYPE 3
38.Os
39.Sh NAME
40.Nm isalpha ,
41.Nm isupper ,
42.Nm islower ,
43.Nm isdigit ,
44.Nm isxdigit ,
45.Nm isalnum ,
46.Nm isspace ,
47.Nm ispunct ,
48.Nm isprint ,
49.Nm isgraph ,
50.Nm iscntrl ,
51.Nm isascii ,
52.Nm toupper ,
53.Nm tolower ,
54.Nm toascii
55.Nd character classification macros
56.Sh SYNOPSIS
57.Fd #include <ctype.h>
58.Fa int c
59.br
60.Fn isalpha c
61.Fn isupper c
62.Fn islower c
63.Fn isdigit c
64.Fn isxdigit c
65.Fn isalnum c
66.Fn isspace c
67.Fn ispunct c
68.Fn isprint c
69.Fn isgraph c
70.Fn iscntrl c
71.Fn isascii c
72.Fn toupper c
73.Fn tolower c
74.Fn toascii c
75.Sh DESCRIPTION
76The above macros perform character tests and conversions on the integer
77.Ar c .
78.Pp
79See the specific manual pages for more information.
80.Sh SEE ALSO
81.Xr isalpha 3 ,
82.Xr isupper 3 ,
83.Xr islower 3 ,
84.Xr isdigit 3 ,
85.Xr isxdigit 3 ,
86.Xr isalnum 3 ,
87.Xr isspace 3 ,
88.Xr ispunct 3 ,
89.Xr isprint 3 ,
90.Xr isgraph 3 ,
91.Xr iscntrl 3 ,
92.Xr isascii 3 ,
93.Xr toupper 3 ,
94.Xr tolower 3 ,
95.Xr toascii 3 ,
96.Xr ascii 7
97.Sh STANDARDS
98These functions, except for
99.Fn toupper ,
100.Fn tolower
101and
102.Fn toascii ,
103conform to
104.St -ansiC .
105