0b44a031
d89fdec5
1 2 3 4 5 6 7
8 9 10 11 12 13 14
#include <ctype.h> int tolower(int c) { if (isupper(c)) return c | 32; return c; } int __tolower_l(int c, locale_t l) { return tolower(c); } weak_alias(__tolower_l, tolower_l);