1 /* Modified (m) 2017 Thomas Wolff: revise Unicode and locale/wchar handling */
6 #include "categories.h"
9 iswalpha_l (wint_t c
, struct __locale_t
*locale
)
12 c
= _jp2uc_l (c
, locale
);
13 enum category cat
= category (c
);
14 return cat
== CAT_LC
|| cat
== CAT_Lu
|| cat
== CAT_Ll
|| cat
== CAT_Lt
15 || cat
== CAT_Lm
|| cat
== CAT_Lo
16 || cat
== CAT_Nl
// Letter_Number
19 return c
< (wint_t)0x100 ? isalpha (c
) : 0;
20 #endif /* _MB_CAPABLE */