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