lang-bootstrap/05/musl-final/src/locale/islower_l.c
2025-04-05 10:55:40 +01:00

6 lines
77 B
C

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