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