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