Ayuda en error 021
#1

Hola,

Al compilar un GM, me emite este error:

error 021: symbol already defined: "strtok"

Код:
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;
}
їAlguna idea o guнa? A lo mejor tengo que meter un .inc en la carpeta, o algo...
Gracias de antemano.
Reply
#2

eliminalo, es por que ya lo tienes definido, tal vez en algun include.

saludos.
Reply
#3

Si, me he dado cuenta que borrando el #include <dudb> se me soluciona.

Gracias OTACON
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)