iswprintのヘルプ・マニュアル
日本語 英語
iswprint --help
man iswprint
ISWPRINT(3) Linux Programmer’s Manual ISWPRINT(3)
名前
iswprint - 印字可能ワイド文字かどうかを調べる
書式
#include
int iswprint(wint_t wc);
説明
iswprint() 関数は、 isprint(3) に対応するワイド文字関数である。この関数
は、wc がワイド文字クラス "print" に属するワイド文字かどうかを調べる。
ワイド文字クラス "print" は、ワイド文字クラス "cntrl" と共通部分を持 た
ない。
ワイド文字クラス "print" は、ワイド文字クラス "graph" を含む。
返り値
iswprint() 関数は、wc がワイド文字クラス "print" に属するワイド文字なら
ば 0 でない値を返す。そうでなければ 0 を返す。
準拠
C99.
注意
iswprint() の動作は現在のロケールの LC_CTYPE カテゴリに依存する。
関連項目
isprint(3), iswctype(3)
GNU 1999-07-25 ISWPRINT(3)
ISWPRINT(3) Linux Programmer’s Manual ISWPRINT(3)
NAME
iswprint - test for printing wide character
SYNOPSIS
#include
int iswprint(wint_t wc);
DESCRIPTION
The iswprint() function is the wide-character equivalent of the
isprint(3) function. It tests whether wc is a wide character belonging
to the wide-character class "print".
The wide-character class "print" is disjoint from the wide-character
class "cntrl".
The wide-character class "print" contains the wide-character class
"graph".
RETURN VALUE
The iswprint() function returns non-zero if wc is a wide character
belonging to the wide-character class "print". Otherwise it returns
zero.
CONFORMING TO
C99.
NOTES
The behavior of iswprint() depends on the LC_CTYPE category of the cur-
rent locale.
SEE ALSO
isprint(3), iswctype(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 ISWPRINT(3)