#include /* TODO: Faster toupper */ int toupper(int c) { if(c >= 'a' && c <= 'z') c += 'A' - 'a'; return c; }