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