|
NAMEiswalnum_l , iswalpha_l ,
iswcntrl_l , iswctype_l ,
iswdigit_l , iswgraph_l ,
iswlower_l , iswprint_l ,
iswpunct_l , iswspace_l ,
iswupper_l , iswxdigit_l ,
towlower_l , towupper_l ,
wctype_l , iswblank_l ,
iswhexnumber_l , iswideogram_l ,
iswnumber_l , iswphonogram_l ,
iswrune_l , iswspecial_l ,
nextwctype_l , towctrans_l ,
wctrans_l —
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
wint_t
wint_t
wctype_t
int
int
int
int
int
int
int
wint_t
wint_t
wctrans_t
DESCRIPTIONThe above functions are character classification utility functions, for use with wide characters (wchar_t or wint_t) in the locale loc. They behave in the same way as the versions without the _l suffix, but use the specified locale rather than the global or per-thread locale. These functions may be implemented as inline functions in<wctype.h> and as functions in
the C library. See the specific manual pages for more information.
RETURN VALUESThese functions return the same things as their non-locale versions. If the locale is invalid, their behaviors are undefined.SEE ALSOiswalnum(3), iswalpha(3), iswblank(3), iswcntrl(3), iswctype(3), iswdigit(3), iswgraph(3), iswhexnumber(3), iswideogram(3), iswlower(3), iswnumber(3), iswphonogram(3), iswprint(3), iswpunct(3), iswrune(3), iswspace(3), iswspecial(3), iswupper(3), iswxdigit(3), nextwctype(3), towctrans(3), towlower(3), towupper(3), wctrans(3), wctype(3)STANDARDSThese functions conform to IEEE Std 1003.1-2008 (“POSIX.1”), except foriswascii_l (),
iswhexnumber_l (),
iswideogram_l (),
iswphonogram_l (), iswrune_l (),
iswspecial_l () and
nextwctype_l () which are
FreeBSD extensions.
Visit the GSP FreeBSD Man Page Interface. |