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