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