vote up 3 vote down star

What is the purpose of the strdup() function in C?

flag

1  
there is also strdupa() (in the GNU C library), a nice function that is similar to strdup(), but allocates memory on the stack. Your program don't need to free the memory explicitly as in case with strdup(), it will be freed automatically when you exit the function where strdupa() was called – dmityugov Oct 31 '08 at 13:05

7 Answers

vote up 13 vote down check

It's effectively doing the same as the following code:

char *strdup (const char *s) {
    char *d = (char *)(malloc (strlen (s) + 1));
    if (d == NULL) return NULL;
    strcpy (d,s);
    return d;
}

In other words:

  1. It tries to allocate enough memory to hold the old string (plus a null character to mark the end of the string).
  2. If the allocation failed, it sets errno to ENOMEM and returns NULL immediately (setting of errno to ENOMEM is something malloc does so we don't need to explicitly do it in our strdup).
  3. Otherwise the allocation worked so we copy the old string to the new string and return the new address (which the caller is responsible for freeing).

Keep in mind that's the conceptual definition. Any library writer worth their salary should have provided optimized code depending on the processor being used.

Having re-found this answer after some months, I think the code is better written as:

char *strdup (const char *s) {
    char *d = (char *)(malloc (strlen (s) + 1));
    if (d != NULL)
        strcpy (d,s);
    return d;
}

since it avoids the multiple return points. I'm not usually that concerned by multiple returns (especially when you can see them all at a glance) but some people feel quite strongly about it, so I'll cater to their needs as well.

link|flag
It is worth noting, that as Pax' sample implementation implies, strdup(NULL) is undefined and not something you can expect to behave in any predicable way. – unwind May 22 at 10:14
Also, I think malloc() would set errno, so you shouldn't have to set it yourself. I think. – Chris Lutz Jun 8 at 3:58
That's a good point, @Chris. I changed it because I had a need to look at the man page for strdup() and noticed I'd left that out. But I forgot that malloc() did that for it. So I'll revert the code. – paxdiablo Jun 8 at 4:09
vote up 6 vote down

From strdup man:

The strdup() function shall return a pointer to a new string, which is a duplicate of the string pointed to by s1. The returned pointer can be passed to free(). A null pointer is returned if the new string cannot be created.

link|flag
vote up 0 vote down

It makes a duplicate copy of the string passed in by running a malloc and strcpy of the string passed in. The malloc'ed buffer is returned to the caller, hence the need to run free on the return value.

link|flag
vote up 0 vote down

The most valuable thing it does is give you another string identical to the first, without requiring you to allocate memory (location and size) yourself. But, as noted, you still need to free it (but which doesn't require a quantity calculation, either.)

link|flag
vote up 4 vote down

No point repeating the other answers, but please note that strdup() can do anything it wants from a C perspective, since it is not part of any C standard. It is however defined by POSIX.1-2001.

link|flag
vote up 5 vote down

I feel that this is a question which is simple enough that it should be answered on your own, and not through a community like SO.

Option a: man strdup

Option b: source of strdup in libc

link|flag
RTFM pretty much covers the function – Daniel Goldberg Nov 27 at 14:34
vote up 0 vote down
char * strdup(const char * s)
{
size_t len = 1+strlen(s);
char *p = malloc(len);

  return p ? memcpy(p, s, len) : NULL;
}

May be a bit faster than with strcpy as the \0 char doesn't need to be searched again (it already was with strlen).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.