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