musl/src/locale/islower_l.c
2011-02-12 00:22:29 -05:00

6 lines
77 B
C

#include <ctype.h>
int islower_l(int c, locale_t l)
{
return islower(c);
}