]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/wctype.3
ffix
[thirdparty/man-pages.git] / man3 / wctype.3
CommitLineData
fea681da
MK
1.\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2.\"
3.\" This is free documentation; you can redistribute it and/or
4.\" modify it under the terms of the GNU General Public License as
5.\" published by the Free Software Foundation; either version 2 of
6.\" the License, or (at your option) any later version.
7.\"
8.\" References consulted:
9.\" GNU glibc-2 source code and manual
10.\" Dinkumware C library reference http://www.dinkumware.com/
11.\" OpenGroup's Single Unix specification http://www.UNIX-systems.org/online.html
12.\" ISO/IEC 9899:1999
13.\"
14.TH WCTYPE 3 1999-07-25 "GNU" "Linux Programmer's Manual"
15.SH NAME
d0f17b57 16wctype \- wide-character classification
fea681da
MK
17.SH SYNOPSIS
18.nf
19.B #include <wctype.h>
20.sp
21.BI "wctype_t wctype(const char *" name );
22.fi
23.SH DESCRIPTION
24The \fBwctype_t\fP type represents a property which a wide character may or
c13182ef
MK
25may not have.
26In other words, it represents a class of wide characters.
fea681da 27This type's nature is implementation dependent, but the special value
0c535394 28\fI(wctype_t) 0\fP denotes an invalid property.
c13182ef 29Nonzero \fBwctype_t\fP values
60a90ecd
MK
30can be passed to the
31.BR iswctype (3)
32function
c13182ef 33to actually test whether a given
fea681da
MK
34wide character has the property.
35.PP
60a90ecd
MK
36The
37.BR wctype ()
38function returns a property, given by its name.
c13182ef 39The set of
1274071a
MK
40valid names depends on the
41.B LC_CTYPE
42category of the current locale, but the
fea681da
MK
43following names are valid in all locales.
44.nf
fb186734
MK
45 "alnum" \- realizes the \fBisalnum\fP(3) classification function
46 "alpha" \- realizes the \fBisalpha\fP(3) classification function
47 "blank" \- realizes the \fBisblank\fP(3) classification function
48 "cntrl" \- realizes the \fBiscntrl\fP(3) classification function
49 "digit" \- realizes the \fBisdigit\fP(3) classification function
50 "graph" \- realizes the \fBisgraph\fP(3) classification function
51 "lower" \- realizes the \fBislower\fP(3) classification function
52 "print" \- realizes the \fBisprint\fP(3) classification function
53 "punct" \- realizes the \fBispunct\fP(3) classification function
54 "space" \- realizes the \fBisspace\fP(3) classification function
55 "upper" \- realizes the \fBisupper\fP(3) classification function
56 "xdigit" \- realizes the \fBisxdigit\fP(3) classification function
fea681da
MK
57.fi
58.SH "RETURN VALUE"
60a90ecd
MK
59The
60.BR wctype ()
61function returns a property descriptor
c13182ef 62if the \fIname\fP is valid.
0c535394 63Otherwise it returns \fI(wctype_t) 0\fP.
fea681da 64.SH "CONFORMING TO"
68e1685c 65C99.
fea681da 66.SH NOTES
d9bfdb9c 67The behavior of
60a90ecd 68.BR wctype ()
1274071a
MK
69depends on the
70.B LC_CTYPE
71category of the
fea681da 72current locale.
e37e3282
MK
73.SH "SEE ALSO"
74.BR iswctype (3)