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