blob: fc55b6c106e738cd2e6b20393c13c8cbac03b1a5 [file] [log] [blame]
#include <ctype.h>
#include "libc.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);