31.08.2013, 07:52
You can either just minus 32 of the ASCII value per character or use https://sampwiki.blast.hk/wiki/Toupper
pawn Код:
new string[10] = "potato", id;
while(string[id] != EOS)
{
string[id] = toupper(string[id]);
id++;
}