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