[AJUDA] Alguйm pode me ajudar ?
#2

Acrescente isso no GM

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;
}
Reply


Messages In This Thread
[AJUDA] Alguйm pode me ajudar ? - by ._DubSteP[SK] - 11.10.2011, 19:25
Re: [AJUDA] Alguйm pode me ajudar ? - by ViniBorn - 11.10.2011, 19:26
Re: [AJUDA] Alguйm pode me ajudar ? - by LuizGustavo - 11.10.2011, 19:26
Re: [AJUDA] Alguйm pode me ajudar ? - by ReDKiiL - 11.10.2011, 19:27
Re: [AJUDA] Alguйm pode me ajudar ? - by ._DubSteP[SK] - 11.10.2011, 19:37
Re: [AJUDA] Alguйm pode me ajudar ? - by ceesar90 - 11.10.2011, 20:00

Forum Jump:


Users browsing this thread: 1 Guest(s)