cali-house
#1

D:\CNR\filterscripts\cali-houses.pwn(219) : error 021: symbol already defined: "strtok"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


1 Error.

Quote:

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;
}

Help!!
Reply


Messages In This Thread
cali-house - by NNek - 25.06.2014, 05:53
Re: cali-house - by RenovanZ - 25.06.2014, 05:57
Re: cali-house - by ScripteRNaBEEL - 25.06.2014, 05:58
Re: cali-house - by ]Rafaellos[ - 25.06.2014, 06:36
Re: cali-house - by Faisal_khan - 25.06.2014, 06:41
Re: cali-house - by ScripteRNaBEEL - 25.06.2014, 14:22

Forum Jump:


Users browsing this thread: 1 Guest(s)