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