24.03.2012, 13:10
Eu sei, Mais esse Code a da Stock strtok tem ela definida no gm ? ou algum fs ?
Se tiver Retire
Si nao tente colocar Assim no Lugar:
Se tiver Retire
Si nao tente colocar Assim no Lugar:
pawn Код:
stock strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}
new offset = index;
new result[20];
while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}