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