OSDN Git Service

(split) LDP: draft snapshot generated from latest pthread/ja.po files.
[linuxjm/LDP_man-pages.git] / release / 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 .SH 名前
20 iswprint \- 印字可能ワイド文字かどうかを調べる
21 .SH 書式
22 .nf
23 .B #include <wctype.h>
24 .sp
25 .BI "int iswprint(wint_t " wc );
26 .fi
27 .SH 説明
28 .BR iswprint ()
29 関数は、
30 .BR isprint (3)
31 に対応するワイド文字関数である。
32 この関数は、\fIwc\fP がワイド文字クラス "print" に属するワイド文字かど
33 うかを調べる。
34 .PP
35 ワイド文字クラス "print" は、ワイド文字クラス "cntrl" と共通部分を持た
36 ない。
37 .PP
38 ワイド文字クラス "print" は、ワイド文字クラス "graph" を含む。
39 .SH 返り値
40 .BR iswprint ()
41 関数は、\fIwc\fP がワイド文字クラス "print" に属するワ
42 イド文字ならば 0 でない値を返す。そうでなければ 0 を返す。
43 .SH 準拠
44 C99.
45 .SH 注意
46 .BR iswprint ()
47 の動作は現在のロケールの
48 .B LC_CTYPE
49 カテゴリに依存する。
50 .SH 関連項目
51 .BR isprint (3),
52 .BR iswctype (3)