OSDN Git Service

(split) Convert release and draft pages to UTF-8.
[linuxjm/LDP_man-pages.git] / release / man3 / iswspace.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 Sun Sep  5 22:05:50 JST 1999
16 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\" Updated Sun Dec 26 19:31:58 JST 1999
18 .\"           by Kentaro Shirakata <argrath@yo.rim.or.jp>
19 .\"
20 .TH ISWSPACE 3 1999-07-25 "GNU" "Linux Programmer's Manual"
21 .SH 名前
22 iswspace \- 空白ワイド文字かどうかを調べる
23 .SH 書式
24 .nf
25 .B #include <wctype.h>
26 .sp
27 .BI "int iswspace(wint_t " wc );
28 .fi
29 .SH 説明
30 .BR iswspace ()
31 関数は、
32 .BR isspace (3)
33 に対応するワイド文字関数である。
34 この関数は、\fIwc\fP がワイド文字クラス "space" に属するワイド文字かど
35 うかを調べる。
36 .PP
37 ワイド文字クラス "space" はワイド文字クラス "graph" と共通部分を持たない。
38 したがって、そのサブクラスである "alnum", "alpha", "upper", "lower",
39 "digit", "xdigit", "punct" とも共通部分を持たない。
40 .\" Note: UNIX98 (susv2/xbd/locale.html) says that "space" and "graph" may
41 .\" have characters in common, except U+0020. But C99 (ISO/IEC 9899:1999
42 .\" section 7.25.2.1.10) says that "space" and "graph" are disjoint.
43 .PP
44 ワイド文字クラス "space" はワイド文字クラス "blank" を含む。
45 .PP
46 ワイド文字クラス "space" は少なくとも、空白文字および制御文字 \(aq\\f\(aq,
47 \(aq\\n\(aq, \(aq\\r\(aq, \(aq\\t\(aq, \(aq\\v\(aq を必ず含む。
48 .SH 返り値
49 .BR iswspace ()
50 関数は、\fIwc\fP がワイド文字クラス "space" に含まれる
51 ならば 0 でない値を返す。そうでなければ 0 を返す。
52 .SH 準拠
53 C99.
54 .SH 注意
55 .BR iswspace ()
56 の動作は、現在のロケールの
57 .B LC_CTYPE
58 カテゴリに依存する。
59 .SH 関連項目
60 .BR isspace (3),
61 .BR iswctype (3)