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