getting undefined errors....
#5

i put this under the /cc command but then i get 12 errors :/

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

Reply


Messages In This Thread
getting undefined errors.... - by [EDT]AmanSingh123 - 24.08.2011, 11:05
Re: getting undefined errors.... - by =WoR=Varth - 24.08.2011, 11:09
Re: getting undefined errors.... - by =WoR=G4M3Ov3r - 24.08.2011, 11:11
Re: getting undefined errors.... - by =WoR=Varth - 24.08.2011, 11:19
Re: getting undefined errors.... - by [EDT]AmanSingh123 - 24.08.2011, 11:27
Re: getting undefined errors.... - by =WoR=G4M3Ov3r - 24.08.2011, 11:37
Re: getting undefined errors.... - by [EDT]AmanSingh123 - 24.08.2011, 11:45

Forum Jump:


Users browsing this thread: 2 Guest(s)