| STRDUP(3) | Linux Programmer's Manual | STRDUP(3) |
strdup - duplicate a string
#include <string.h> char *strdup(const char *s);
The strdup() function returns a pointer to a new string which is a duplicate of the string s. Memory for the new string is obtained with malloc(3), and can be freed with free(3).
The strdup() function returns a pointer to the duplicated string, or NULL if insufficient memory was available.
SVID 3, BSD 4.3
| April 12, 1993 | GNU |