blob: 0b6a120e4d5dab4a0a7186c55e760c49a23e9405 [file] [log] [blame]
#include <ctype.h>
int tolower(int c) {
if (isupper(c))
return c | 32;
return c;
}