lang-bootstrap/05/musl-0.6.0/src/locale/tolower_l.c

7 lines
77 B
C
Raw Normal View History

2022-02-20 13:18:21 -08:00
#include <ctype.h>
int tolower_l(int c, locale_t l)
{
return tolower(c);
}