31.08.2013, 08:03
I don't remember if there's any performance diffrence, but if you don't want to use this comma thingy, you should be able to just add return to the stock
pawn Код:
stock UpperWord(string[]) {
new
i = 0;
while(EOS != string[i]) {
if('a' <= string[i] <= 'z') string[i] -= 32;
++i;
}
return string;
}