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