- Uniformly use .In for header file references.
[dragonfly.git] / lib / libc / gen / ctype.3
1 .\" Copyright (c) 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)ctype.3     8.1 (Berkeley) 6/4/93
33 .\" $FreeBSD: src/lib/libc/locale/ctype.3,v 1.6.2.3 2001/12/14 18:33:54 ru Exp $
34 .\" $DragonFly: src/lib/libc/gen/ctype.3,v 1.3 2006/05/26 19:39:36 swildner Exp $
35 .\"
36 .Dd June 4, 1993
37 .Dt CTYPE 3
38 .Os
39 .Sh NAME
40 .Nm isalnum ,
41 .Nm isalpha ,
42 .Nm isascii ,
43 .Nm isblank ,
44 .Nm iscntrl ,
45 .Nm isdigit ,
46 .Nm isgraph ,
47 .Nm ishexnumber ,
48 .Nm isideogram ,
49 .Nm islower ,
50 .Nm isnumber ,
51 .Nm isphonogram ,
52 .Nm isprint ,
53 .Nm ispunct ,
54 .Nm isrune ,
55 .Nm isspace ,
56 .Nm isspecial ,
57 .Nm isupper ,
58 .Nm isxdigit ,
59 .Nm toascii ,
60 .Nm tolower ,
61 .Nm toupper
62 .Nd character classification macros
63 .Sh LIBRARY
64 .Lb libc
65 .Sh SYNOPSIS
66 .In ctype.h
67 .Ft int
68 .Fn isalnum "int c"
69 .Ft int
70 .Fn isalpha "int c"
71 .Ft int
72 .Fn isascii "int c"
73 .Ft int
74 .Fn iscntrl "int c"
75 .Ft int
76 .Fn isdigit "int c"
77 .Ft int
78 .Fn isgraph "int c"
79 .Ft int
80 .Fn ishexnumber "int c"
81 .Ft int
82 .Fn isideogram "int c"
83 .Ft int
84 .Fn islower "int c"
85 .Ft int
86 .Fn isnumber "int c"
87 .Ft int
88 .Fn isphonogram "int c"
89 .Ft int
90 .Fn isspecial "int c"
91 .Ft int
92 .Fn isprint "int c"
93 .Ft int
94 .Fn ispunct "int c"
95 .Ft int
96 .Fn isrune "int c"
97 .Ft int
98 .Fn isspace "int c"
99 .Ft int
100 .Fn isupper "int c"
101 .Ft int
102 .Fn isxdigit "int c"
103 .Ft int
104 .Fn toascii "int c"
105 .Ft int
106 .Fn tolower "int c"
107 .Ft int
108 .Fn toupper "int c"
109 .Sh DESCRIPTION
110 The above functions perform character tests and conversions on the integer
111 .Ar c .
112 They are available as macros, defined in the include file
113 .In ctype.h ,
114 or as true functions in the C library.
115 See the specific manual pages for more information.
116 .Sh SEE ALSO
117 .Xr isalnum 3 ,
118 .Xr isalpha 3 ,
119 .Xr isascii 3 ,
120 .Xr isblank 3 ,
121 .Xr iscntrl 3 ,
122 .Xr isdigit 3 ,
123 .Xr isgraph 3 ,
124 .Xr islower 3 ,
125 .Xr isprint 3 ,
126 .Xr ispunct 3 ,
127 .Xr isspace 3 ,
128 .Xr isupper 3 ,
129 .Xr isxdigit 3 ,
130 .Xr toascii 3 ,
131 .Xr tolower 3 ,
132 .Xr toupper 3 ,
133 .Xr ascii 7
134 .Sh STANDARDS
135 These functions, except for
136 .Fn digittoint ,
137 .Fn isascii ,
138 .Fn isblank ,
139 .Fn ishexnumber ,
140 .Fn isideogram ,
141 .Fn isnumber ,
142 .Fn isphonogram ,
143 .Fn isrune ,
144 .Fn isspecial
145 and
146 .Fn toascii ,
147 conform to
148 .St -isoC .