lang-bootstrap/05/musl-final/src/locale/islower_l.c

7 lines
77 B
C
Raw Normal View History

2025-04-05 10:55:40 +01:00
#include <ctype.h>
int islower_l(int c, locale_t l)
{
return islower(c);
}