Server problem
#3

Quote:
Originally Posted by prisonliferp
Посмотреть сообщение
-Your array size may be too small, also "strtok" Might be defined one time before?
Post your code or I cant really help
Код:
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
Server problem - by viddo - 24.12.2011, 17:44
Re: Server problem - by prisonliferp - 24.12.2011, 18:03
Re: Server problem - by viddo - 24.12.2011, 19:38
Re: Server problem - by prisonliferp - 24.12.2011, 19:52

Forum Jump:


Users browsing this thread: 1 Guest(s)