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