12.12.2012, 22:15
I could have sworn the compiler gave an indeterminate array size error last time I tried something like this.
Anyways, is this any better?
Anyways, is this any better?
pawn Код:
stock uppercase(string[])
{
for(new i=0; i<sizeof string; i++)
{
string[i] = toupper(string[i]);
}
return string;
}

