[Ajuda] Que erro й esse?
#4

Код:
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;
}
esse й o comando todo
Reply


Messages In This Thread
Que erro й esse? - by BobbMarley - 10.09.2015, 04:07
Re: Que erro й esse? - by MCBAIDU - 10.09.2015, 04:10
Re: Que erro й esse? - by Asus994 - 10.09.2015, 04:20
Re: Que erro й esse? - by BobbMarley - 10.09.2015, 05:39
Re: Que erro й esse? - by DouglasRodrigues - 10.09.2015, 08:18
Re: Que erro й esse? - by BobbMarley - 10.09.2015, 10:34
Re: Que erro й esse? - by MacMillan_ - 10.09.2015, 14:15
Re: Que erro й esse? - by JonathanFeitosa - 10.09.2015, 15:16

Forum Jump:


Users browsing this thread: 1 Guest(s)