OSDN Git Service

(split) LDP_man-pages: release ioctl.2 [JM:00378]
[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)