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