OSDN Git Service

Convert release and draft pages to UTF-8.
[linuxjm/jm.git] / manual / LDP_man-pages / release / man3 / iswblank.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 Wed Sep  1 22:40:19 JST 1999
16 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\" Updated Sun Dec 26 19:31:26 JST 1999
18 .\"           by Kentaro Shirakata <argrath@yo.rim.or.jp>
19 .\"
20 .TH ISWBLANK 3  2010-09-20 "GNU" "Linux Programmer's Manual"
21 .SH 名前
22 iswblank \- 空白ワイド文字かどうかを調べる
23 .SH 書式
24 .nf
25 .B #include <wctype.h>
26 .sp
27 .BI "int iswblank(wint_t " wc );
28 .fi
29 .sp
30 .in -4n
31 glibc 向けの機能検査マクロの要件
32 .RB ( feature_test_macros (7)
33 参照):
34 .in
35 .sp
36 .ad l
37 .BR iswblank ():
38 .RS
39 _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE ||
40 _POSIX_C_SOURCE\ >=\ 200112L;
41 .br
42 or
43 .I cc\ -std=c99
44 .RE
45 .ad
46 .SH 説明
47 .BR iswblank ()
48 関数は、
49 .BR isblank (3)
50 に対応するワイド文字関数である。
51 この関数は、\fIwc\fP がワイド文字クラス "blank" に属するワイド文字かど
52 うかを調べる。
53 .PP
54 ワイド文字クラス "blank" はワイド文字クラス "space" のサブクラスである。
55 .PP
56 ワイド文字クラス "space" のサブクラスなので、ワイド文字クラス "blank"
57 はワイド文字クラス "graph" とは共通部分を持たず、したがってそのサブクラス
58 である "alnum", "alpha", "upper", "lower", "digit", "xdigit", "punct"
59 とも共通部分を持たない。
60 .PP
61 ワイド文字クラス "blank" は、少なくとも空白文字と制御文字 \(aq\\t\(aq を常に
62 含む。
63 .SH 返り値
64 .BR iswblank ()
65 関数は、\fIwc\fP がワイド文字クラス "blank" に属する
66 ワイド文字ならば 0 でない値を返す。それ以外の場合には 0 を返す。
67 .SH 準拠
68 POSIX.1-2001.
69 .SH 注意
70 .BR iswblank ()
71 の動作は、現在のロケールの
72 .B LC_CTYPE
73 カテゴリに依存する。
74 .SH 関連項目
75 .BR isblank (3),
76 .BR iswctype (3)