musl-tcc/src/ctype/iswlower.c
2022-03-20 16:48:53 +08:00

14 lines
181 B
C

#include <wctype.h>
int iswlower(wint_t wc)
{
return towupper(wc) != wc;
}
int __iswlower_l(wint_t c, locale_t l)
{
return iswlower(c);
}
weak_alias(__iswlower_l, iswlower_l);