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