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