[Ajuda] Erros ao compilar
#3

isso esta definido duas vezes

pawn Код:
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;
}

IsNumeric(const string[])
{
    for (new i = 0, j = strlen(string); i < j; i++)
    {
        if (string[i] > '9' || string[i] < '0') return 0;
    }
    return 1;
}
procura no seu gm se tem esses codigos ae duas vezes!
Reply


Messages In This Thread
Erros ao compilar - by HighBall - 04.08.2012, 17:39
Re: Erros ao compilar - by .FuneraL. - 04.08.2012, 17:43
AW: Erros ao compilar - by billy the kid - 04.08.2012, 17:44
Re: AW: Erros ao compilar - by HighBall - 04.08.2012, 17:54

Forum Jump:


Users browsing this thread: 1 Guest(s)