char touppercase(unsigned int i, char c) { if (i < 3 && c >= 'a' && c <= 'z') c -= 32; return (c); }