Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: c37a4fdf5472b9460cc38885342ef59bce05753f authored by Benjamin Peterson on 06 April 2012, 17:17:25 UTC
bump to 3.1.5 final
Tip revision: c37a4fd
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