Definition | #include <wctype.h> int iswctype(wint_t wc, wctype_t charclass);
| ||
Return val. |
0 | The wide character is in character class charclass. The wide character not in the character class charclass. | |
Notes | This version of the C runtime system only supports one-byte characters as wide character codes. The twelve strings iswalnum(wc) iswctype(wc, wctype("alnum")) iswalpha(wc) iswctype(wc, wctype("alpha")) iswcntrl(wc) iswctype(wc, wctype("cntrl")) iswdigit(wc) iswctype(wc, wctype("digit")) iswgraph(wc) iswctype(wc, wctype("graph")) iswlower(wc) iswctype(wc, wctype("lower")) iswprint(wc) iswctype(wc, wctype("print")) iswpunct(wc) iswctype(wc, wctype("punct")) iswspace(wc) iswctype(wc, wctype("space")) iswupper(wc) iswctype(wc, wctype("upper")) iswxdigit(wc) iswctype(wc, wctype("xdigit")) The call | ||
See also | wctype, iswalnum, iswalpha, iswcntrl, iswdigit, iswgraph, iswlower, iswprint, iswpunct, |