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