OSDN Git Service

41d241a04ab220049c77d3f2bc0378287f666def
[linuxjm/LDP_man-pages.git] / draft / man3 / iswctype.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 Thu Sep  2 21:47:20 JST 1999
16 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\"
18 .\" WORD: character property descriptor 文字属性指示子
19 .\"
20 .TH ISWCTYPE 3 1999-07-25 "GNU" "Linux Programmer's Manual"
21 .\"O .SH NAME
22 .SH 名前
23 .\"O iswctype \- wide-character classification
24 iswctype \- ワイド文字の分類
25 .\"O .SH SYNOPSIS
26 .SH 書式
27 .nf
28 .B #include <wctype.h>
29 .sp
30 .BI "int iswctype(wint_t " wc ", wctype_t " desc );
31 .fi
32 .\"O .SH DESCRIPTION
33 .SH 説明
34 .\"O If \fIwc\fP is a wide character having the character property designated by
35 .\"O \fIdesc\fP (or in other words: belongs to the character class designated by
36 .\"O \fIdesc\fP), the
37 .\"O .BR iswctype ()
38 .\"O function returns nonzero.
39 .\"O Otherwise it
40 .\"O returns zero.
41 .\"O If \fIwc\fP is
42 .\"O .BR WEOF ,
43 .\"O zero is returned.
44 \fIwc\fP が
45 \fIdesc\fP で指示された文字属性を持つ (言い換えると、\fIdesc\fP で指示
46 された文字クラスに属する) ワイド文字ならば、
47 .BR iswctype ()
48 関数は 0 で
49 ない値を返す。それ以外の場合にはこの関数は 0 を返す。\fIwc\fP が
50 .B WEOF
51 ならば 0 が返される。
52 .PP
53 .\"O \fIdesc\fP must be a character property descriptor
54 .\"O returned by the
55 .\"O .BR wctype ()
56 .\"O function.
57 \fIdesc\fP は
58 .BR wctype ()
59 関数が返す文字属性指示子でなければならない。
60 .\"O .SH "RETURN VALUE"
61 .SH 返り値
62 .\"O The
63 .\"O .BR iswctype ()
64 .\"O function returns nonzero if
65 .\"O the \fIwc\fP has the designated
66 .\"O property.
67 .\"O Otherwise it returns 0.
68 .BR iswctype ()
69 関数は、\fIwc\fP が指示された属性を持つならば 0 でない
70 値を返す。そうでなければ 0 を返す。
71 .\"O .SH "CONFORMING TO"
72 .SH 準拠
73 C99.
74 .\"O .SH NOTES
75 .SH 注意
76 .\"O The behavior of
77 .\"O .BR iswctype ()
78 .\"O depends on the
79 .\"O .B LC_CTYPE
80 .\"O category of the
81 .\"O current locale.
82 .BR iswctype ()
83 の動作は、現在のロケールの
84 .B LC_CTYPE
85 カテゴリに依存する。
86 .\"O .SH "SEE ALSO"
87 .SH 関連項目
88 .BR iswalnum (3),
89 .BR iswalpha (3),
90 .BR iswblank (3),
91 .BR iswcntrl (3),
92 .BR iswdigit (3),
93 .BR iswgraph (3),
94 .BR iswlower (3),
95 .BR iswprint (3),
96 .BR iswpunct (3),
97 .BR iswspace (3),
98 .BR iswupper (3),
99 .BR iswxdigit (3),
100 .BR wctype (3)