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