3 <<iswalnum>>, <<iswalnum_l>>---alphanumeric wide character test
13 int iswalnum(wint_t <[c]>);
16 int iswalnum_l(wint_t <[c]>, locale_t <[locale]>);
19 <<iswalnum>> is a function which classifies wide-character values that
22 <<iswalnum_l>> is like <<iswalnum>> 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 <<iswalnum>>, <<iswalnum_l>> return non-zero if <[c]> is a alphanumeric
32 <<iswalnum_l>> is POSIX-1.2008.
34 No supporting OS subroutines are required.
42 return iswalnum_l (c
, 0);