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