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 optimized code depending on the processor being used. Having re-found this answer after some months, I think the code is better written as:
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. |
||||||
|
|
|
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.) |
||
|
|
|
|
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. |
||
|
|
|
|
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 |
||
|
|
|
May be a bit faster than with strcpy as the \0 char doesn't need to be searched again (it already was with strlen). |
||
|
|
