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