summaryrefslogtreecommitdiffstats
path: root/lib/libc/locale/wctype.3
diff options
context:
space:
mode:
authortjr <tjr@FreeBSD.org>2002-08-03 04:18:40 +0000
committertjr <tjr@FreeBSD.org>2002-08-03 04:18:40 +0000
commit2ddf585cade5416ac291172579ad3c3b3f5a38a3 (patch)
tree2ae8f05b347bfb78175d1e7470f3233c5c8d4092 /lib/libc/locale/wctype.3
parent1d09617e8112714b60586d5e36869a247409dfea (diff)
downloadFreeBSD-src-2ddf585cade5416ac291172579ad3c3b3f5a38a3.zip
FreeBSD-src-2ddf585cade5416ac291172579ad3c3b3f5a38a3.tar.gz
Add ISO C90 Amd. 1 wctype(3) and iswctype(3) functions.
Diffstat (limited to 'lib/libc/locale/wctype.3')
-rw-r--r--lib/libc/locale/wctype.3103
1 files changed, 103 insertions, 0 deletions
diff --git a/lib/libc/locale/wctype.3 b/lib/libc/locale/wctype.3
new file mode 100644
index 0000000..87a08ad
--- /dev/null
+++ b/lib/libc/locale/wctype.3
@@ -0,0 +1,103 @@
+.\" Copyright (c) 2002 Tim J. Robbins
+.\" All rights reserved.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\" notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\" notice, this list of conditions and the following disclaimer in the
+.\" documentation and/or other materials provided with the distribution.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+.\" SUCH DAMAGE.
+.\"
+.\" $FreeBSD$
+.\"
+.Dd August 3, 2002
+.Dt WCTYPE 3
+.Os
+.Sh NAME
+.Nm iswctype, wctype
+.Nd "wide character class functions"
+.Sh LIBRARY
+.Lb libc
+.Sh SYNOPSIS
+.In wctype.h
+.Ft int
+.Fn iswctype "wint_t wc" "wctype_t charclass"
+.Ft wctype_t
+.Fn wctype "const char *property"
+.Sh DESCRIPTION
+The
+.Fn wctype
+function returns a value of type
+.Vt wctype_t
+which represents the requested wide character class and
+may be used as the second argument for calls to
+.Fn iswctype .
+.Pp
+The following character class names are recognised:
+.Bl -column -offset indent ".Li alnum" ".Li cntrl" ".Li phonogram" ".Li print" ".Li special"
+.It Li alnum Ta Li cntrl Ta Li ideogram Ta Li print Ta Li special
+.It Li alpha Ta Li digit Ta Li lower Ta Li punct Ta Li upper
+.It Li blank Ta Li graph Ta Li phonogram Ta Li space Ta Li xdigit
+.El
+.Pp
+The
+.Fn iswctype
+function checks whether the wide character
+.Fa wc
+is in the character class
+.Fa charclass .
+.Sh RETURN VALUES
+The
+.Fn iswctype
+function returns non-zero if and only if
+.Fa wc
+has the property described by
+.Fa charclass ,
+or
+.Fa charclass
+is zero.
+.Pp
+The
+.Fn wctype
+function returns 0 if
+.Fa property
+is invalid, otherwise it returns a value of type
+.Vt wctype_t
+that can be used in subsequent calls to
+.Fn iswctype .
+.Sh SEE ALSO
+.Xr ctype 1
+.Sh STANDARDS
+The
+.Fn iswctype
+and
+.Fn wctype
+functions conform to
+.St -p1003.1-2001 .
+The
+.Li ideogram ,
+.Li phonogram
+and
+.Li special
+character classes are extensions.
+.Sh HISTORY
+The
+.Fn iswctype
+and
+.Fn wctype
+functions first appeared in
+.Fx 5.0 .
OpenPOWER on IntegriCloud