OSDN Git Service

d8d90c58fc7e93665f91c6f5d53b856a662fc1fb
[linuxjm/LDP_man-pages.git] / draft / man3 / iswdigit.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:56:46 JST 1999
16 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\" Updated Sun Dec 26 19:31:32 JST 1999
18 .\"           by Kentaro Shirakata <argrath@yo.rim.or.jp>
19 .\"
20 .TH ISWDIGIT 3 1999-07-25 "GNU" "Linux Programmer's Manual"
21 .\"O .SH NAME
22 .SH 名前
23 .\"O iswdigit \- test for decimal digit wide character
24 iswdigit \- 数字ワイド文字であるかどうかを調べる
25 .\"O .SH SYNOPSIS
26 .SH 書式
27 .nf
28 .B #include <wctype.h>
29 .sp
30 .BI "int iswdigit(wint_t " wc );
31 .fi
32 .\"O .SH DESCRIPTION
33 .SH 説明
34 .\"O The
35 .\"O .BR iswdigit ()
36 .\"O function is the wide-character equivalent of the
37 .\"O .BR isdigit (3)
38 .\"O function.
39 .\"O It tests whether \fIwc\fP is a wide character
40 .\"O belonging to the wide-character class "digit".
41 .BR iswdigit ()
42 関数は、
43 .BR isdigit (3)
44 に対応するワイド文字関数である。
45 この関数は、\fIwc\fP がワイド文字クラス "digit" に属するワイド文字かど
46 うかを調べる。
47 .PP
48 .\"O The wide-character class "digit" is a subclass of the wide-character class
49 .\"O "xdigit", and therefore also a subclass
50 .\"O of the wide-character class "alnum", of
51 .\"O the wide-character class "graph" and of the wide-character class "print".
52 ワイド文字クラス "digit" はワイド文字クラス "xdigit" のサブクラスであ
53 る。したがってワイド文字クラス "alnum" や、その親クラスである "graph",
54 さらにその親クラスである "print" のサブクラスでもある。
55 .PP
56 .\"O Being a subclass of the wide-character
57 .\"O class "print", the wide-character class
58 .\"O "digit" is disjoint from the wide-character class "cntrl".
59 ワイド文字クラス "print" のサブクラスなので、ワイド文字クラス "digit"
60 はワイド文字クラス "cntrl" と共通部分を持たない。
61 .PP
62 .\"O Being a subclass of the wide-character class "graph",
63 .\"O the wide-character class
64 .\"O "digit" is disjoint from the wide-character class "space" and its subclass
65 .\"O "blank".
66 ワイド文字クラス "graph" のサブクラスなので、ワイド文字クラス "digit"
67 はワイド文字クラス "space" とそのサブクラスである "blank" と共通
68 部分を持たない。
69 .PP
70 .\"O Being a subclass of the wide-character
71 .\"O class "alnum", the wide-character class
72 .\"O "digit" is disjoint from the wide-character class "punct".
73 ワイド文字クラス "alnum" のサブクラスなので、ワイド文字クラス "digit"
74 はワイド文字クラス "punct" と共通部分を持たない。
75 .PP
76 .\"O The wide-character class "digit" is
77 .\"O disjoint from the wide-character class
78 .\"O "alpha" and therefore also disjoint from its subclasses "lower", "upper".
79 ワイド文字クラス "digit" は、ワイド文字クラス "alpha" と共通部分を持た
80 ない。したがって、そのサブクラスである "lower", "upper" とも共通部分を
81 持たない。
82 .PP
83 .\"O The wide-character class "digit" always
84 .\"O contains exactly the digits \(aq0\(aq to \(aq9\(aq.
85 ワイド文字クラス "digit" は必ず、\(aq0\(aq から \(aq9\(aq までの
86 数字だけからなる。
87 .\"O .SH "RETURN VALUE"
88 .SH 返り値
89 .\"O The
90 .\"O .BR iswdigit ()
91 .\"O function returns nonzero
92 .\"O if \fIwc\fP is a wide character
93 .\"O belonging to the wide-character class "digit".
94 .\"O Otherwise it returns zero.
95 .BR iswdigit ()
96 関数は、\fIwc\fP がワイド文字クラス "digit" に属するワ
97 イド文字ならば 0 でない値を返す。それ以外の場合には 0 を返す。
98 .\"O .SH "CONFORMING TO"
99 .SH 準拠
100 C99.
101 .\"O .SH NOTES
102 .SH 注意
103 .\"O The behavior of
104 .\"O .BR iswdigit ()
105 .\"O depends on the
106 .\"O .B LC_CTYPE
107 .\"O category of the
108 .\"O current locale.
109 .BR iswdigit ()
110 の動作は、現在のロケールの
111 .B LC_CTYPE
112 カテゴリに依存する。
113 .\"O .SH "SEE ALSO"
114 .SH 関連項目
115 .BR isdigit (3),
116 .BR iswctype (3)