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