tolower_l
_XLOCALE_INLINE int tolower_l(int, locale_t);
extern int tolower_l(int, locale_t);
return (isascii(c) ? __trans_lower[c] : tolower_l(c, uselocale(NULL)));