[AJUDA] 02 Erros Na Conce
#6

Eu sei, Mais esse Code a da Stock strtok tem ela definida no gm ? ou algum fs ?
Se tiver Retire

Si nao tente colocar Assim no Lugar:
pawn Код:
stock 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;
}
Reply


Messages In This Thread
[AJUDA] 02 Erros Na Conce - by shadauer - 24.03.2012, 01:05
Re: [AJUDA] 02 Erros Na Conce - by Gustavo_z - 24.03.2012, 01:20
Re: [AJUDA] 02 Erros Na Conce - by shadauer - 24.03.2012, 12:35
Re: [AJUDA] 02 Erros Na Conce - by BreakDriFT - 24.03.2012, 12:50
Re: [AJUDA] 02 Erros Na Conce - by shadauer - 24.03.2012, 13:05
Re: [AJUDA] 02 Erros Na Conce - by BreakDriFT - 24.03.2012, 13:10
Re: [AJUDA] 02 Erros Na Conce - by shadauer - 24.03.2012, 13:14
Re: [AJUDA] 02 Erros Na Conce - by BreakDriFT - 24.03.2012, 13:16
Re: [AJUDA] 02 Erros Na Conce - by shadauer - 24.03.2012, 13:26
Re: [AJUDA] 02 Erros Na Conce - by BreakDriFT - 24.03.2012, 13:27

Forum Jump:


Users browsing this thread: 1 Guest(s)