diff options
-rw-r--r-- | Python/strdup.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Python/strdup.c b/Python/strdup.c new file mode 100644 index 0000000..5198e25 --- /dev/null +++ b/Python/strdup.c @@ -0,0 +1,22 @@ +/* strdup() replacement (from stdwin, if you must know) */ + +#include "config.h" +#include <string.h> + +#ifdef HAVE_STDLIB_H +#include <stdlib.h> +#else +extern ANY *malloc Py_PROTO((size_t)); +#endif + +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; +} |