1 .\" $NetBSD: iswalnum.3,v 1.5 2002/07/10 14:46:10 yamt Exp $
3 .\" Copyright (c) 1991 The Regents of the University of California.
4 .\" All rights reserved.
6 .\" This code is derived from software contributed to Berkeley by
7 .\" the American National Standards Committee X3, on Information
8 .\" Processing Systems.
10 .\" Redistribution and use in source and binary forms, with or without
11 .\" modification, are permitted provided that the following conditions
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.
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
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 $
64 .Nd wide character classification utilities
70 .Fn iswalnum "wint_t wc"
72 .Fn iswalpha "wint_t wc"
74 .Fn iswascii "wint_t wc"
76 .Fn iswblank "wint_t wc"
78 .Fn iswcntrl "wint_t wc"
80 .Fn iswdigit "wint_t wc"
82 .Fn iswgraph "wint_t wc"
84 .Fn iswhexnumber "wint_t wc"
86 .Fn iswideogram "wint_t wc"
88 .Fn iswlower "wint_t wc"
90 .Fn iswnumber "wint_t wc"
92 .Fn iswphonogram "wint_t wc"
94 .Fn iswprint "wint_t wc"
96 .Fn iswpunct "wint_t wc"
98 .Fn iswrune "wint_t wc"
100 .Fn iswspace "wint_t wc"
102 .Fn iswspecial "wint_t wc"
104 .Fn iswupper "wint_t wc"
106 .Fn iswxdigit "wint_t wc"
108 The above functions are character classification utility functions,
109 for use with wide characters
113 See the description for the similarly-named single byte classification
118 Extended locale versions of these functions are documented in
122 for more information.
124 The functions return zero if the character tests false and
125 return non-zero if the character tests true.
149 These functions conform to
164 The result of these functions is undefined unless
169 value for the current locale.