Staging
v0.8.1
https://github.com/python/cpython
Revision ab0ef20663ee64667cc979f6810e60914d26d149 authored by Georg Brandl on 01 May 2012, 07:35:18 UTC, committed by Georg Brandl on 01 May 2012, 07:35:18 UTC
1 parent ebb2964
Raw File
Tip revision: ab0ef20663ee64667cc979f6810e60914d26d149 authored by Georg Brandl on 01 May 2012, 07:35:18 UTC
Bump to 3.3.0a3.
Tip revision: ab0ef20
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