[Ajuda] Arumar FS
#9

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


Messages In This Thread
Arumar FS - by RNT - 12.08.2012, 02:32
Re: Arumar FS - by .FuneraL. - 12.08.2012, 02:39
Re: Arumar FS - by Jonas_Alves - 12.08.2012, 02:44
Respuesta: Arumar FS - by RNT - 12.08.2012, 02:52
Respuesta: Arumar FS - by RNT - 12.08.2012, 03:35
Respuesta: Arumar FS - by AnonymouSs - 12.08.2012, 03:42
Re: Arumar FS - by .FuneraL. - 12.08.2012, 03:45
Respuesta: Arumar FS - by RNT - 12.08.2012, 03:45
Re: Arumar FS - by .FuneraL. - 12.08.2012, 03:50
Re: Respuesta: Arumar FS - by Tony_Rodrigues - 12.08.2012, 05:01

Forum Jump:


Users browsing this thread: 2 Guest(s)