WCTYPESection: Linux Programmer's Manual (3)Updated: 1999-07-25 |
WCTYPESection: Linux Programmer's Manual (3)Updated: 1999-07-25 |
#include <wctype.h> wctype_t wctype(const char *name);
The wctype function returns a property, given by its name. The set of valid names depends on the LC_CTYPE category of the current locale, but the following names are valid in all locales.
"alnum" - realizes the isalnum classification function "alpha" - realizes the isalpha classification function "blank" - realizes the isblank classification function "cntrl" - realizes the iscntrl classification function "digit" - realizes the isdigit classification function "graph" - realizes the isgraph classification function "lower" - realizes the islower classification function "print" - realizes the isprint classification function "punct" - realizes the ispunct classification function "space" - realizes the isspace classification function "upper" - realizes the isupper classification function "xdigit" - realizes the isxdigit classification function