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