0
0
mirror of https://github.com/python/cpython.git synced 2024-11-24 17:47:13 +01:00
cpython/Python/strdup.c

20 lines
321 B
C
Raw Normal View History

1996-08-29 19:48:26 +02:00
/* strdup() replacement (from stdwin, if you must know) */
#include "config.h"
1996-08-29 20:10:30 +02:00
#include "myproto.h"
#include "mymalloc.h"
1996-08-29 19:48:26 +02:00
1996-08-29 20:10:30 +02:00
#include <string.h>
1996-08-29 19:48:26 +02: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;
}