[Ajuda] Erro com objetos
#5

Alguйm??

essa й a linha de erro..

Код:
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;
}
Reply


Messages In This Thread
Erro com objetos - by yuryroque - 07.11.2013, 10:51
Re: Erro com objetos - by Locky_ - 07.11.2013, 11:55
Re: Erro com objetos - by yuryroque - 07.11.2013, 12:09
Re: Erro com objetos - by yuryroque - 07.11.2013, 12:15
Re: Erro com objetos - by yuryroque - 07.11.2013, 14:32
Re: Erro com objetos - by smiiir - 07.11.2013, 15:19
Re: Erro com objetos - by yuryroque - 07.11.2013, 15:39

Forum Jump:


Users browsing this thread: 1 Guest(s)