#include #include int tolower(int c) { if (isupper(c)) return c | 32; return c; } __weak int tolower_l(int c, locale_t __unused locale) { return tolower(c); }