Porfavor necesito ayuda con strtok.
#2

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;
}
Pegб eso en tu script, pero te recomendaria que empieses a usar sscanf2+zcmd.
Reply


Messages In This Thread
Porfavor necesito ayuda con strtok. - by arturo clark - 10.11.2010, 04:52
Re: Porfavor necesito ayuda con strtok. - by The_Moddler - 10.11.2010, 10:47

Forum Jump:


Users browsing this thread: 1 Guest(s)