]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/iswprint.3
Adding section numbers to xrefs toother pages
[thirdparty/man-pages.git] / man3 / iswprint.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 ISWPRINT 3 1999-07-25 "GNU" "Linux Programmer's Manual"
15 .SH NAME
16 iswprint \- test for printing wide character
17 .SH SYNOPSIS
18 .nf
19 .B #include <wctype.h>
20 .sp
21 .BI "int iswprint(wint_t " wc );
22 .fi
23 .SH DESCRIPTION
24 The \fBiswprint\fP() function is the wide-character equivalent of the
25 \fBisprint\fP(3) function.
26 It tests whether \fIwc\fP is a wide character
27 belonging to the wide-character class "print".
28 .PP
29 The wide-character class "print" is disjoint from the wide-character class
30 "cntrl".
31 .PP
32 The wide-character class "print" contains the wide-character class "graph".
33 .SH "RETURN VALUE"
34 The \fBiswprint\fP() function returns non-zero if \fIwc\fP is a
35 wide character belonging to the wide-character class "print".
36 Otherwise it returns zero.
37 .SH "CONFORMING TO"
38 C99.
39 .SH "SEE ALSO"
40 .BR isprint (3),
41 .BR iswctype (3)
42 .SH NOTES
43 The behaviour of \fBiswprint\fP() depends on the LC_CTYPE category of the
44 current locale.