what mean errors 21 47 201 21?
#5

and line 372 = {



code




strtok(const string[], &index)
{ <<<<this line 372
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
what mean errors 21 47 201 21? - by oObig_manOo - 15.04.2010, 23:27
Re: what mean errors 21 47 201 21? - by ruckfules99 - 15.04.2010, 23:33
Re: what mean errors 21 47 201 21? - by Thrarod - 15.04.2010, 23:36
Re: what mean errors 21 47 201 21? - by oObig_manOo - 15.04.2010, 23:47
Re: what mean errors 21 47 201 21? - by oObig_manOo - 15.04.2010, 23:58

Forum Jump:


Users browsing this thread: 1 Guest(s)