]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/wctype.3
Convert function formatting of the form "\fBname\fP()" to ".BR name ()".
[thirdparty/man-pages.git] / man3 / wctype.3
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
16 wctype \- wide-character classification
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
24 The \fBwctype_t\fP type represents a property which a wide character may or
25 may not have.
26 In other words, it represents a class of wide characters.
27 This type's nature is implementation dependent, but the special value
28 \fI(wctype_t)0\fP denotes an invalid property.
29 Nonzero \fBwctype_t\fP values
30 can be passed to the
31 .BR iswctype (3)
32 function
33 to actually test whether a given
34 wide character has the property.
35 .PP
36 The
37 .BR wctype ()
38 function returns a property, given by its name.
39 The set of
40 valid names depends on the LC_CTYPE category of the current locale, but the
41 following names are valid in all locales.
42 .nf
43 "alnum" \- realizes the \fBisalnum\fP(3) classification function
44 "alpha" \- realizes the \fBisalpha\fP(3) classification function
45 "blank" \- realizes the \fBisblank\fP(3) classification function
46 "cntrl" \- realizes the \fBiscntrl\fP(3) classification function
47 "digit" \- realizes the \fBisdigit\fP(3) classification function
48 "graph" \- realizes the \fBisgraph\fP(3) classification function
49 "lower" \- realizes the \fBislower\fP(3) classification function
50 "print" \- realizes the \fBisprint\fP(3) classification function
51 "punct" \- realizes the \fBispunct\fP(3) classification function
52 "space" \- realizes the \fBisspace\fP(3) classification function
53 "upper" \- realizes the \fBisupper\fP(3) classification function
54 "xdigit" \- realizes the \fBisxdigit\fP(3) classification function
55 .fi
56 .SH "RETURN VALUE"
57 The
58 .BR wctype ()
59 function returns a property descriptor
60 if the \fIname\fP is valid.
61 Otherwise it returns \fI(wctype_t)0\fP.
62 .SH "CONFORMING TO"
63 C99.
64 .SH "SEE ALSO"
65 .BR iswctype (3)
66 .SH NOTES
67 The behaviour of
68 .BR wctype ()
69 depends on the LC_CTYPE category of the
70 current locale.