stock strToUpper(string[]) { new i = 0; while(EOS != string[i]) { if('a' <= string[i] <= 'z') string[i] -= 32; ++i; }}