musl/src/locale/iswlower_l.c

7 lines
83 B
C

#include <wctype.h>
int iswlower_l(wint_t c, locale_t l)
{
return iswlower(c);
}