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