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