OSDN Git Service

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