]>
Commit | Line | Data |
---|---|---|
3d9156a7 A |
1 | .\" $NetBSD: iswalnum.3,v 1.5 2002/07/10 14:46:10 yamt Exp $ |
2 | .\" | |
3 | .\" Copyright (c) 1991 The Regents of the University of California. | |
4 | .\" All rights reserved. | |
5 | .\" | |
6 | .\" This code is derived from software contributed to Berkeley by | |
7 | .\" the American National Standards Committee X3, on Information | |
8 | .\" Processing Systems. | |
9 | .\" | |
10 | .\" Redistribution and use in source and binary forms, with or without | |
11 | .\" modification, are permitted provided that the following conditions | |
12 | .\" are met: | |
13 | .\" 1. Redistributions of source code must retain the above copyright | |
14 | .\" notice, this list of conditions and the following disclaimer. | |
15 | .\" 2. Redistributions in binary form must reproduce the above copyright | |
16 | .\" notice, this list of conditions and the following disclaimer in the | |
17 | .\" documentation and/or other materials provided with the distribution. | |
18 | .\" 3. All advertising materials mentioning features or use of this software | |
19 | .\" must display the following acknowledgement: | |
20 | .\" This product includes software developed by the University of | |
21 | .\" California, Berkeley and its contributors. | |
22 | .\" 4. Neither the name of the University nor the names of its contributors | |
23 | .\" may be used to endorse or promote products derived from this software | |
24 | .\" without specific prior written permission. | |
25 | .\" | |
26 | .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
27 | .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
28 | .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
29 | .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
30 | .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
31 | .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
32 | .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
33 | .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
34 | .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
35 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
36 | .\" SUCH DAMAGE. | |
37 | .\" | |
38 | .\" @(#)isalnum.3 5.2 (Berkeley) 6/29/91 | |
39 | .\" $FreeBSD: src/lib/libc/locale/iswalnum.3,v 1.5 2002/11/29 17:35:09 ru Exp $ | |
40 | .\" | |
41 | .Dd March 11, 2005 | |
42 | .Dt ISWALNUM_L 3 | |
43 | .Os | |
44 | .Sh NAME | |
45 | .Nm iswalnum_l , | |
46 | .Nm iswalpha_l , | |
47 | .Nm iswblank_l , | |
48 | .Nm iswcntrl_l , | |
49 | .Nm iswdigit_l , | |
50 | .Nm iswgraph_l , | |
51 | .Nm iswhexnumber_l , | |
52 | .Nm iswideogram_l , | |
53 | .Nm iswlower_l , | |
54 | .Nm iswnumber_l , | |
55 | .Nm iswphonogram_l , | |
56 | .Nm iswprint_l , | |
57 | .Nm iswpunct_l , | |
58 | .Nm iswrune_l , | |
59 | .Nm iswspace_l , | |
60 | .Nm iswspecial_l , | |
61 | .Nm iswupper_l , | |
62 | .Nm iswxdigit_l | |
63 | .Nd wide character classification utilities | |
64 | .Sh LIBRARY | |
65 | .Lb libc | |
66 | .Sh SYNOPSIS | |
67 | .In wctype.h | |
68 | .In xlocale.h | |
69 | .Ft int | |
70 | .Fn iswalnum_l "wint_t wc" "locale_t loc" | |
71 | .Ft int | |
72 | .Fn iswalpha_l "wint_t wc" "locale_t loc" | |
73 | .Ft int | |
74 | .Fn iswascii_l "wint_t wc" "locale_t loc" | |
75 | .Ft int | |
76 | .Fn iswblank_l "wint_t wc" "locale_t loc" | |
77 | .Ft int | |
78 | .Fn iswcntrl_l "wint_t wc" "locale_t loc" | |
79 | .Ft int | |
80 | .Fn iswdigit_l "wint_t wc" "locale_t loc" | |
81 | .Ft int | |
82 | .Fn iswgraph_l "wint_t wc" "locale_t loc" | |
83 | .Ft int | |
84 | .Fn iswhexnumber_l "wint_t wc" "locale_t loc" | |
85 | .Ft int | |
86 | .Fn iswideogram_l "wint_t wc" "locale_t loc" | |
87 | .Ft int | |
88 | .Fn iswlower_l "wint_t wc" "locale_t loc" | |
89 | .Ft int | |
90 | .Fn iswnumber_l "wint_t wc" "locale_t loc" | |
91 | .Ft int | |
92 | .Fn iswphonogram_l "wint_t wc" "locale_t loc" | |
93 | .Ft int | |
94 | .Fn iswprint_l "wint_t wc" "locale_t loc" | |
95 | .Ft int | |
96 | .Fn iswpunct_l "wint_t wc" "locale_t loc" | |
97 | .Ft int | |
98 | .Fn iswrune_l "wint_t wc" "locale_t loc" | |
99 | .Ft int | |
100 | .Fn iswspace_l "wint_t wc" "locale_t loc" | |
101 | .Ft int | |
102 | .Fn iswspecial_l "wint_t wc" "locale_t loc" | |
103 | .Ft int | |
104 | .Fn iswupper_l "wint_t wc" "locale_t loc" | |
105 | .Ft int | |
106 | .Fn iswxdigit_l "wint_t wc" "locale_t loc" | |
107 | .Sh DESCRIPTION | |
108 | These | |
109 | functions are extended locale versions of the corresponding functions in | |
110 | .Xr iswalnum 3 . | |
111 | Also, see | |
112 | .Xr xlocale 3 for more information about extended locales. | |
113 | .Sh SEE ALSO | |
114 | .Xr iswalnum 3 , | |
115 | .Xr xlocale 3 |