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