cpython/Python/strdup.c

13 lines
251 B
C
Raw Normal View History

1996-08-29 17:48:26 +00:00
/* strdup() replacement (from stdwin, if you must know) */
char *
strdup(const char *str)
1996-08-29 17:48:26 +00:00
{
if (str != NULL) {
char *copy = malloc(strlen(str) + 1);
if (copy != NULL)
return strcpy(copy, str);
}
return NULL;
1996-08-29 17:48:26 +00:00
}