lang-bootstrap/05/musl-0.6.0/src/locale/islower_l.c
2022-02-20 13:18:21 -08:00

6 lines
77 B
C

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