|
NAMEiswalnum , iswalpha ,
iswascii , iswblank ,
iswcntrl , iswdigit ,
iswgraph , iswhexnumber ,
iswideogram , iswlower ,
iswnumber , iswphonogram ,
iswprint , iswpunct ,
iswrune , iswspace ,
iswspecial , iswupper ,
iswxdigit —
wide character classification utilities
LIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <wctype.h>
int
int
int
int
int
int
int
int
int
int
int
int
int
int
int
int
int
int
int
DESCRIPTIONThe above functions are character classification utility functions, for use with wide characters (wchar_t or wint_t). See the description for the similarly-named single byte classification functions (like isalnum(3)), for details.RETURN VALUESThe functions return zero if the character tests false and return non-zero if the character tests true.SEE ALSOisalnum(3), isalpha(3), isascii(3), isblank(3), iscntrl(3), isdigit(3), isgraph(3), ishexnumber(3), isideogram(3), islower(3), isnumber(3), isphonogram(3), isprint(3), ispunct(3), isrune(3), isspace(3), isspecial(3), isupper(3), isxdigit(3), wctype(3)STANDARDSThese functions conform to IEEE Std 1003.1-2001 (“POSIX.1”), exceptiswascii (),
iswhexnumber (), iswideogram (),
iswnumber (), iswphonogram (),
iswrune () and iswspecial (),
which are FreeBSD extensions.
CAVEATSThe result of these functions is undefined unless the argument isWEOF or a valid wchar_t value
for the current locale.
Visit the GSP FreeBSD Man Page Interface. |