cpython/Python/strdup.c

20 lines
321 B
C
Raw Normal View History

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