[Ajuda] strtok
#2

Coloque isso no seu GM, pode ser em qualquer lugar, menos dentro das publics:

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] strtok - by Dr_Pawno - 15.06.2010, 17:14
Re: [Ajuda] strtok - by Ricardo_Saddler - 15.06.2010, 17:19

Forum Jump:


Users browsing this thread: 2 Guest(s)