C - homebrew strtok

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
User avatar
M_D_K
Chaos Rift Demigod
Chaos Rift Demigod
Posts: 1087
Joined: Tue Oct 28, 2008 10:33 am
Favorite Gaming Platforms: PC
Programming Language of Choice: C/++
Location: UK

C - homebrew strtok

Post by M_D_K »

So this code came into existence cause avansc wanted to see how I'd do it and so he could use it. Clearly neither of us knew about strtok.

Code: Select all

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 :mrgreen:
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.
User avatar
MarauderIIC
Respected Programmer
Respected Programmer
Posts: 3406
Joined: Sat Jul 10, 2004 3:05 pm
Location: Maryland, USA

Re: C - homebrew strtok

Post by MarauderIIC »

M_D_K wrote:So this code came into existence cause avansc wanted to see how I'd do it and so he could use it. Clearly neither of us knew about strtok.
Noobs. :)
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
User avatar
sparda
Chaos Rift Junior
Chaos Rift Junior
Posts: 291
Joined: Tue Sep 23, 2008 3:54 pm

Re: C - homebrew strtok

Post by sparda »

Include me in the Noob bunch; I had no idea about strtok() :shock2:
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: C - homebrew strtok

Post by avansc »

he neglects to mention that i said. wait. there is this..... strtok.............................................................fux
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
User avatar
MarauderIIC
Respected Programmer
Respected Programmer
Posts: 3406
Joined: Sat Jul 10, 2004 3:05 pm
Location: Maryland, USA

Re: C - homebrew strtok

Post by MarauderIIC »

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.
Post Reply