RETURN VALUES
The iswctype function returns non-zero if and only if wc has the property described by charclass, or charclass is zero. The wctype function returns 0 if property is invalid, otherwise it returns a value of type
.Vt wctype_t that can be used in subsequent calls to iswctype.
EXAMPLES
Reimplement iswalpha(3) in terms of iswctype and wctype:
int
myiswalpha(wint_t wc)
{
return (iswctype(wc, wctype("alpha")));
}
SEE ALSO
ctype(3)
STANDARDS
HISTORY