i want a Little help in script
#2

line (25116) strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}






line (25131) is 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
i want a Little help in script - by chintan - 31.07.2014, 08:51
Re: i want a Little help in script - by chintan - 31.07.2014, 08:54
Respuesta: i want a Little help in script - by ghost556 - 31.07.2014, 09:02
Re: i want a Little help in script - by Ritzy2K - 31.07.2014, 09:14
Re: i want a Little help in script - by chintan - 31.07.2014, 09:27

Forum Jump:


Users browsing this thread: 1 Guest(s)