ref: c29e1e711c5e0b6ad83f93d65a88d320302402d1 dir: /lib/c/tolower.c/
#define __USE_MACROS #include <ctype.h> #undef tolower int tolower(int c) { return (isupper(c)) ? c | 0x20 : c; }