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