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