25.02.2011, 22:11
Poste as linhas..mais vo adivinha como arruma um deles:
warning 203: symbol is never used: "strtok2"
e q vc nao esta usando essa strtok2...apague ela...
vai tar assim :
apaga tudo isso....
warning 203: symbol is never used: "strtok2"
e q vc nao esta usando essa strtok2...apague ela...
vai tar assim :
pawn Код:
strtok2(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;
}