cpython/Python/strdup.c

15 lines
256 B
C
Raw Normal View History

1996-08-29 14:48:26 -03:00
/* strdup() replacement (from stdwin, if you must know) */
#include "pgenheaders.h"
1996-08-29 14:48:26 -03:00
char *
strdup(const char *str)
1996-08-29 14:48:26 -03:00
{
if (str != NULL) {
register char *copy = malloc(strlen(str) + 1);
if (copy != NULL)
return strcpy(copy, str);
}
return NULL;
}