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