11.08.2011, 23:45
eaw galera oia eu aki dnv ¬¬ bom se alguem poder ajuda nesse cmd aki ficaria grato , e ganha REP+
o Erro sгo esses dois
Codigo usado
o Erro sгo esses dois
Quote:
C:\Documents and Settings\Wellington & Bruna\Desktop\SS.pwn(1431) : error 021: symbol already defined: "strtok" C:\Documents and Settings\Wellington & Bruna\Desktop\SS.pwn(1446) : error 047: array sizes do not match, or destination array is too small |
Codigo usado
pawn Код:
strtok (const string[], &index)
{ // fala que й nessa linha
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; //e nessa aqui
}