Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 68707af1fb87c8b3d128b71c863cd68195da198f authored by Georg Brandl on 23 February 2014, 07:46:00 UTC
merge
Tip revision: 68707af
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