Como arruma esses 2 erros ?
#6

No final do script, ta ai a soluзгo, como eu nгo percebi ¬¬ !
meu erro:
pawn Код:
strtok(const string[], &index)
{
    new length = strlen(string);
    while ((index < length) && (string[index] <= ' '))
    {
        index++;
    }
    while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
    {
        result[index - offset] = string[index];
        index++;
    }
    result[index - offset] = EOS;
    return result;
}
correto:
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;
}
Agora ta resolvido... rs
Reply


Messages In This Thread
Como arruma esses 2 erros ? - by CanTLoGin - 26.08.2011, 12:01
Re: Como arruma esses 2 erros ? - by StrondA_ - 26.08.2011, 12:10
Re: Como arruma esses 2 erros ? - by CanTLoGin - 26.08.2011, 12:13
Re: Como arruma esses 2 erros ? - by [R] ousenber [K] - 26.08.2011, 12:24
Re: Como arruma esses 2 erros ? - by CanTLoGin - 26.08.2011, 12:35
Re: Como arruma esses 2 erros ? - by StrondA_ - 26.08.2011, 12:56
Re: Como arruma esses 2 erros ? - by CanTLoGin - 26.08.2011, 13:57

Forum Jump:


Users browsing this thread: 1 Guest(s)