Pawno error 021: -_-
#2

Код:
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;
}
+REP if i helped u
Reply


Messages In This Thread
Pawno error 021: -_- - by ashwinsekhari - 02.06.2014, 13:36
Re: Pawno error 021: -_- - by Spartaaaaa - 02.06.2014, 13:52
Re: Pawno error 021: -_- - by Lynn - 02.06.2014, 13:55
Re: Pawno error 021: -_- - by Rittik - 02.06.2014, 13:58
Re: Pawno error 021: -_- - by ashwinsekhari - 02.06.2014, 14:02

Forum Jump:


Users browsing this thread: 2 Guest(s)