Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
13  
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
14  
@dmityugov: +1 for strdupa(). That function is especially entertaining to use if you speak Polish :). – slacker Apr 8 '10 at 17:57
That's hilarious! – Allbite Aug 23 '10 at 22:10
7  
Why is this question +5? :-/ 'man strdup' (available in a console or google) is quite informative. – user166390 Nov 7 '10 at 9:36
4  
strdupa is dangerous and should not be used unless you've already determined that strlen is very small. But then you could just use a fixed-size array on the stack. – R.. Dec 29 '10 at 16:34
show 1 more comment

7 Answers

up vote 113 down vote accepted

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

char *strdup (const char *s) {
    char *d = malloc (strlen (s) + 1);   // Space for length plus nul
    if (d == NULL)
        return NULL;                     // No memory
    strcpy (d,s);                        // Copy the characters
    return d;                            // Return the new string
}

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 heavily optimised code targeting the particular processor being used.

If you're part of the crowd that abhors multiple exit points in functions (I don't unless it affects readability, which I don't believe to be the case for such a short function), you can write the code as:

char *strdup (const char *s) {
    char *d = malloc (strlen (s) + 1);   // Allocate memory
    if (d != NULL)
        strcpy (d,s);                    // Copy string if okay
    return d;                            // Return new memory
}
share|improve this answer
3  
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 '09 at 10:14
1  
Also, I think malloc() would set errno, so you shouldn't have to set it yourself. I think. – Chris Lutz Jun 8 '09 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 '09 at 4:09
   
You shouldn't cast the result of malloc()... – Kerrek SB Aug 25 '11 at 2:42
With the existence of strcpy, what's the point of strdup? Safer for string copy? – Alcott Feb 28 '12 at 0:51
show 1 more comment

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.

share|improve this answer
1  
+1: interesting and informative. :) – omgzor Nov 3 '10 at 15:37
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).

share|improve this answer
3  
+1 for better implementation than the accepted answer, and for using the return value of memcpy correctly. – R.. Dec 29 '10 at 16:36
Thanks. In my personal implementation I make it even "worse". return memcpy(malloc(len), s, len); as I prefer the crash on allocation rather than the NULL on allocation failure. – tristopia Dec 30 '10 at 21:00
@tristopia dereferencing NULL doesn't have to crash; it's undefined. If you want to be sure it crashes, write an emalloc which calls abort upon fail. – Dave Dec 30 '11 at 3:28
I know that, but my implementation is guaranteed to run only on Solaris or Linux (by the very nature of the app). – tristopia Dec 30 '11 at 13:01

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.

share|improve this answer

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.

share|improve this answer

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.)

share|improve this answer

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

share|improve this answer
1  
RTFM pretty much covers the function – Daniel Goldberg Nov 27 '09 at 14:34
21  
-1: Simple questions are useful in SO. Comments here by multiple authors are usually more informative than those written by a sole author. Also, they provide good search results. I found this page after googling "strdup" and found it better than the other results. – omgzor Nov 3 '10 at 15:36
3  
-1 disagree and agree with omgzor – johnny Dec 22 '10 at 19:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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