OSDN Git Service

a8883fbc5f654d8e81319d8a1725c5524e6cddf6
[linuxjm/LDP_man-pages.git] / draft / 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 .\" About this Japanese page, please contact to JM Project <JM@linux.or.jp>
15 .\" Translated Sat Sep  4 23:03:32 JST 1999
16 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\"
18 .TH ISWPRINT 3 1999-07-25 "GNU" "Linux Programmer's Manual"
19 .\"O .SH NAME
20 .SH 名前
21 .\"O iswprint \- test for printing wide character
22 iswprint \- 印字可能ワイド文字かどうかを調べる
23 .\"O .SH SYNOPSIS
24 .SH 書式
25 .nf
26 .B #include <wctype.h>
27 .sp
28 .BI "int iswprint(wint_t " wc );
29 .fi
30 .\"O .SH DESCRIPTION
31 .SH 説明
32 .\"O The
33 .\"O .BR iswprint ()
34 .\"O function is the wide-character equivalent of the
35 .\"O .BR isprint (3)
36 .\"O function.
37 .\"O It tests whether \fIwc\fP is a wide character
38 .\"O belonging to the wide-character class "print".
39 .BR iswprint ()
40 関数は、
41 .BR isprint (3)
42 に対応するワイド文字関数である。
43 この関数は、\fIwc\fP がワイド文字クラス "print" に属するワイド文字かど
44 うかを調べる。
45 .PP
46 .\"O The wide-character class "print" is disjoint from the wide-character class
47 .\"O "cntrl".
48 ワイド文字クラス "print" は、ワイド文字クラス "cntrl" と共通部分を持た
49 ない。
50 .PP
51 .\"O The wide-character class "print" contains the wide-character class "graph".
52 ワイド文字クラス "print" は、ワイド文字クラス "graph" を含む。
53 .\"O .SH "RETURN VALUE"
54 .SH 返り値
55 .\"O The
56 .\"O .BR iswprint ()
57 .\"O function returns nonzero if \fIwc\fP is a
58 .\"O wide character belonging to the wide-character class "print".
59 .\"O Otherwise it returns zero.
60 .BR iswprint ()
61 関数は、\fIwc\fP がワイド文字クラス "print" に属するワ
62 イド文字ならば 0 でない値を返す。そうでなければ 0 を返す。
63 .\"O .SH "CONFORMING TO"
64 .SH 準拠
65 C99.
66 .\"O .SH NOTES
67 .SH 注意
68 .\"O The behavior of
69 .\"O .BR iswprint ()
70 .\"O depends on the
71 .\"O .B LC_CTYPE
72 .\"O category of the
73 .\"O current locale.
74 .BR iswprint ()
75 の動作は現在のロケールの
76 .B LC_CTYPE
77 カテゴリに依存する。
78 .\"O .SH "SEE ALSO"
79 .SH 関連項目
80 .BR isprint (3),
81 .BR iswctype (3)