ref: b7e1cae8e53b2a4d9cbaf505927d1abdca22f13d dir: /lib/c/toupper.c/
#define __USE_MACROS #include <ctype.h> #undef toupper int toupper(int c) { return (islower(c)) ? c & ~0x20 : c; }