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