OSDN Git Service

490526a4721f5dcd23cd7b7bf6fedf1d6cdd515d
[linuxjm/LDP_man-pages.git] / original / man3 / iswpunct.3
1 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2 .\"
3 .\" %%%LICENSE_START(GPLv2+_DOC_ONEPARA)
4 .\" This is free documentation; you can redistribute it and/or
5 .\" modify it under the terms of the GNU General Public License as
6 .\" published by the Free Software Foundation; either version 2 of
7 .\" the License, or (at your option) any later version.
8 .\" %%%LICENSE_END
9 .\"
10 .\" References consulted:
11 .\"   GNU glibc-2 source code and manual
12 .\"   Dinkumware C library reference http://www.dinkumware.com/
13 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
14 .\"   ISO/IEC 9899:1999
15 .\"
16 .TH ISWPUNCT 3  1999-07-25 "GNU" "Linux Programmer's Manual"
17 .SH NAME
18 iswpunct \- test for punctuation or symbolic wide character
19 .SH SYNOPSIS
20 .nf
21 .B #include <wctype.h>
22 .sp
23 .BI "int iswpunct(wint_t " wc );
24 .fi
25 .SH DESCRIPTION
26 The
27 .BR iswpunct ()
28 function is the wide-character equivalent of the
29 .BR ispunct (3)
30 function.
31 It tests whether
32 .I wc
33 is a wide character
34 belonging to the wide-character class "punct".
35 .PP
36 The wide-character class "punct" is a subclass of the wide-character class
37 "graph", and therefore also a subclass of the wide-character class "print".
38 .PP
39 The wide-character class "punct" is disjoint from the wide-character class
40 "alnum" and therefore also disjoint from its subclasses "alpha", "upper",
41 "lower", "digit", "xdigit".
42 .PP
43 Being a subclass of the wide-character class "print",
44 the wide-character class
45 "punct" is disjoint from the wide-character class "cntrl".
46 .PP
47 Being a subclass of the wide-character class "graph",
48 the wide-character class
49 "punct" is disjoint from the wide-character class "space" and its subclass
50 "blank".
51 .SH RETURN VALUE
52 The
53 .BR iswpunct ()
54 function returns nonzero
55 if
56 .I wc
57 is a wide-character
58 belonging to the wide-character class "punct".
59 Otherwise, it returns zero.
60 .SH CONFORMING TO
61 C99.
62 .SH NOTES
63 The behavior of
64 .BR iswpunct ()
65 depends on the
66 .B LC_CTYPE
67 category of the
68 current locale.
69 .PP
70 This function's name is a misnomer when dealing with Unicode characters,
71 because the wide-character class "punct" contains both punctuation characters
72 and symbol (math, currency, etc.) characters.
73 .SH SEE ALSO
74 .BR ispunct (3),
75 .BR iswctype (3)
76 .SH COLOPHON
77 This page is part of release 3.67 of the Linux
78 .I man-pages
79 project.
80 A description of the project,
81 information about reporting bugs,
82 and the latest version of this page,
83 can be found at
84 \%http://www.kernel.org/doc/man\-pages/.