[Ajuda] Erro na "strtok"
#1

Estou com esse erro :
pawn Код:
D:\GuetoBrasil.pwn(427) : error 021: symbol already defined: "strtok"
Linha : {

Comando Completo

pawn Код:
strtok(const string[], &index)
{ // aqui o erro
    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;
}
Reply
#2

Jб estб definida essa funзгo no seu gamemode
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)