Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 9aefd695a93d412fbedca658d6d6887182fd4976 authored by Georg Brandl on 05 March 2011, 14:09:43 UTC
Close 3.0 branch.
Tip revision: 9aefd69
strdup.c
/* strdup() replacement (from stdwin, if you must know) */

#include "pgenheaders.h"

char *
strdup(const char *str)
{
	if (str != NULL) {
		register char *copy = malloc(strlen(str) + 1);
		if (copy != NULL)
			return strcpy(copy, str);
	}
	return NULL;
}
back to top