[Ajuda] 26 Erros
#4

ta faltando strtok coloque no fim do codigo
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;
}
@Edit, opa foi mais rapido, rs.
Reply


Messages In This Thread
[Ajuda] 26 Erros - by wallacematheus - 04.11.2011, 00:25
Re: [Ajuda] 26 Erros - by Laercio - 04.11.2011, 00:27
Re: [Ajuda] 26 Erros - by Miqueias Barros - 04.11.2011, 00:30
Re: [Ajuda] 26 Erros - by _Jizzy_ - 04.11.2011, 00:30
Re: [Ajuda] 26 Erros - by Laercio - 04.11.2011, 00:46
Re: [Ajuda] 26 Erros - by Miqueias Barros - 04.11.2011, 00:50

Forum Jump:


Users browsing this thread: 1 Guest(s)