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