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