[Ajudem-Me Por favor]
#2

Acho que seu strtok nгo estб completo ou vocк tem VБRIAS variбveis com arrays pequenas para o que queres usar.

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;
}
Atualize seu strtok pra ver.
Reply


Messages In This Thread
[Ajudem-Me Por favor] - by Andrew_Indio - 14.10.2011, 17:24
Re: [Ajudem-Me Por favor] - by Josma_cmd - 14.10.2011, 17:25
Re: [Ajudem-Me Por favor] - by Shelby - 14.10.2011, 17:33
Re: [Ajudem-Me Por favor] - by Andrew_Indio - 14.10.2011, 17:37
Re: [Ajudem-Me Por favor] - by Josma_cmd - 14.10.2011, 17:40
Re: [Ajudem-Me Por favor] - by Andrew_Indio - 14.10.2011, 17:41
Re: [Ajudem-Me Por favor] - by Josma_cmd - 14.10.2011, 17:46
Re: [Ajudem-Me Por favor] - by Andrew_Indio - 14.10.2011, 17:51
Re: [Ajudem-Me Por favor] - by Andrew_Indio - 14.10.2011, 18:00
Re: [Ajudem-Me Por favor] - by Josma_cmd - 14.10.2011, 18:11

Forum Jump:


Users browsing this thread: 1 Guest(s)