What is the purpose of the strdup() function in C?
|
It's effectively doing the same as the following code:
In other words:
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:
|
|||||||||||||||||
|
|
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. |
|||||
|
May be a bit faster than with strcpy as the \0 char doesn't need to be searched again (it already was with strlen). |
|||||||||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
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.) |
|||
|
|
|
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: Option b: source of |
|||||||||||||
|
strdupa(). That function is especially entertaining to use if you speak Polish :). – slacker Apr 8 '10 at 17:57strdupais dangerous and should not be used unless you've already determined thatstrlenis very small. But then you could just use a fixed-size array on the stack. – R.. Dec 29 '10 at 16:34