strcat implementation from scratch

mvmalderen 0 Tallied Votes 382 Views Share

This is how mine strcat would look like if I'd have to write it from scratch :)

/**
@author: Mathias Van Malderen (tux4life)
*/
void mystrcat(char * s1, const char * s2)
{
    while(*s1) s1++;
    for(; *s1 = *s2; s1++, s2++);
}
mvmalderen 2,072 Postaholic

Or you could rewrite it in a shorter way, thanks to William Hemsworth

void mystrcat(char * s1, const char * s2)
{
    while(*s1++);
    while(*s1++ = *s2++);
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.