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