iswctypeのヘルプ・マニュアル
日本語 英語
iswctype --help
man iswctype
ISWCTYPE(3) Linux Programmer’s Manual ISWCTYPE(3)
名前
iswctype - ワイド文字の分類
書式
#include
int iswctype(wint_t wc, wctype_t desc);
説明
wc が desc で指示された文字属性を持つ (言い換えると、desc で指示された
文字クラスに属する) ワイド文字ならば、 iswctype() 関数は 0 でない値を返
す。それ以外の場合にはこの関数は 0 を返す。wc が WEOF ならば 0 が返され
る。
desc は wctype() 関数が返す文字属性指示子でなければならない。
返り値
iswctype() 関数は、wc が指示された属性を持つならば 0 でない値を返す。そ
うでなければ 0 を返す。
準拠
C99.
注意
iswctype() の動作は、現在のロケールの LC_CTYPE カテゴリに依存する。
関連項目
iswalnum(3), iswalpha(3), iswblank(3), iswcntrl(3), iswdigit(3), isw-
graph(3), iswlower(3), iswprint(3), iswpunct(3), iswspace(3), iswup-
per(3), iswxdigit(3), wctype(3)
GNU 1999-07-25 ISWCTYPE(3)
ISWCTYPE(3) Linux Programmer’s Manual ISWCTYPE(3)
NAME
iswctype - wide-character classification
SYNOPSIS
#include
int iswctype(wint_t wc, wctype_t desc);
DESCRIPTION
If wc is a wide character having the character property designated by
desc (or in other words: belongs to the character class designated by
desc), the iswctype() function returns non-zero. Otherwise it returns
zero. If wc is WEOF, zero is returned.
desc must be a character property descriptor returned by the wctype()
function.
RETURN VALUE
The iswctype() function returns non-zero if the wc has the designated
property. Otherwise it returns 0.
CONFORMING TO
C99.
NOTES
The behavior of iswctype() depends on the LC_CTYPE category of the cur-
rent locale.
SEE ALSO
iswalnum(3), iswalpha(3), iswblank(3), iswcntrl(3), iswdigit(3), isw-
graph(3), iswlower(3), iswprint(3), iswpunct(3), iswspace(3), iswup-
per(3), iswxdigit(3), wctype(3)
COLOPHON
This page is part of release 3.22 of the Linux man-pages project. A
description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
GNU 1999-07-25 ISWCTYPE(3)