char *nextToken(char* data, char delimiter)
{
char *pos = strchr(data, (int)delimiter);
if(pos == NULL)
{
return NULL;
}
char *ret = (char *)malloc((pos-data+1)*sizeof(char));
strncpy(ret, data,(pos-data));
//just in case read and write addresses overlap (it shouldn't)
strcpy(data, pos+1);//here so strncpy doesn't fuck up
return ret;
};
EDIT: So it turns out avansc likes this code more than strtok
EDIT2: Ginto made it segfault(no surprise there) so added a little something to remove user(coder) stupidity.
Last edited by M_D_K on Mon May 25, 2009 2:29 pm, edited 4 times in total.
Gyro Sheen wrote:you pour their inventory onto my life
IRC wrote:
<sparda> The routine had a stack overflow, sorry.
<sparda> Apparently the stack was full of shit.
He mentioned that you had difficulty using it. Check the manual, it's sort of strange (NULL calls after first). The way it's handled also means you can't tokenize two strings in parallel with strtok.
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.