]> git.saurik.com Git - apple/libc.git/blame - locale/ctype_l.3
Libc-391.5.18.tar.gz
[apple/libc.git] / locale / ctype_l.3
CommitLineData
3d9156a7
A
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.15 2004/06/30 20:09:08 ru Exp $
34.\"
35.Dd March 11, 2005
36.Dt CTYPE_L 3
37.Os
38.Sh NAME
39.Nm digittoint_l ,
40.Nm isalnum_l ,
41.Nm isalpha_l ,
42.Nm isascii_l ,
43.Nm isblank_l ,
44.Nm iscntrl_l ,
45.Nm isdigit_l ,
46.Nm isgraph_l ,
47.Nm ishexnumber_l ,
48.Nm isideogram_l ,
49.Nm islower_l ,
50.Nm isnumber_l ,
51.Nm isphonogram_l ,
52.Nm isprint_l ,
53.Nm ispunct_l ,
54.Nm isrune_l ,
55.Nm isspace_l ,
56.Nm isspecial_l ,
57.Nm isupper_l ,
58.Nm isxdigit_l ,
59.Nm toascii_l ,
60.Nm tolower_l ,
61.Nm toupper_l
62.Nd character classification macros
63.Sh LIBRARY
64.Lb libc
65.Sh SYNOPSIS
66.In ctype.h
67.In xlocale.h
68.Ft int
69.Fn digittoint_l "int c" "locale_t loc"
70.Ft int
71.Fn isalnum_l "int c" "locale_t loc"
72.Ft int
73.Fn isalpha_l "int c" "locale_t loc"
74.Ft int
75.Fn isascii_l "int c" "locale_t loc"
76.Ft int
77.Fn iscntrl_l "int c" "locale_t loc"
78.Ft int
79.Fn isdigit_l "int c" "locale_t loc"
80.Ft int
81.Fn isgraph_l "int c" "locale_t loc"
82.Ft int
83.Fn ishexnumber_l "int c" "locale_t loc"
84.Ft int
85.Fn isideogram_l "int c" "locale_t loc"
86.Ft int
87.Fn islower_l "int c" "locale_t loc"
88.Ft int
89.Fn isnumber_l "int c" "locale_t loc"
90.Ft int
91.Fn isphonogram_l "int c" "locale_t loc"
92.Ft int
93.Fn isspecial_l "int c" "locale_t loc"
94.Ft int
95.Fn isprint_l "int c" "locale_t loc"
96.Ft int
97.Fn ispunct_l "int c" "locale_t loc"
98.Ft int
99.Fn isrune_l "int c" "locale_t loc"
100.Ft int
101.Fn isspace_l "int c" "locale_t loc"
102.Ft int
103.Fn isupper_l "int c" "locale_t loc"
104.Ft int
105.Fn isxdigit_l "int c" "locale_t loc"
106.Ft int
107.Fn toascii_l "int c" "locale_t loc"
108.Ft int
109.Fn tolower_l "int c" "locale_t loc"
110.Ft int
111.Fn toupper_l "int c" "locale_t loc"
112.Sh DESCRIPTION
113These
114functions are extended locale versions of the corresponding functions in
115.Xr ctype 3 .
116Also, see
117.Xr xlocale 3 for more information about extended locales.
118.Sh SEE ALSO
119.Xr ctype 3 ,
120.Xr xlocale 3