3 <<iswctype>>, <<iswctype_l>>---extensible wide-character test
13 int iswctype(wint_t <[c]>, wctype_t <[desc]>);
16 int iswctype_l(wint_t <[c]>, wctype_t <[desc]>, locale_t <[locale]>);
19 <<iswctype>> is a function which classifies wide-character values using the
20 wide-character test specified by <[desc]>.
22 <<iswctype_l>> is like <<iswctype>> but performs the check based on the
23 locale specified by the locale object locale. If <[locale]> is
24 LC_GLOBAL_LOCALE or not a valid locale object, the behaviour is undefined.
27 <<iswctype>>, <<iswctype_l>> return non-zero if and only if <[c]> matches
28 the test specified by <[desc]>. If <[desc]> is unknown, zero is returned.
32 <<iswctype_l>> is POSIX-1.2008.
34 No supporting OS subroutines are required.
41 iswctype (wint_t c
, wctype_t desc
)
70 return 0; /* eliminate warning */
73 /* otherwise unknown */