Staging
v0.8.1
https://github.com/python/cpython
Revision 41db7767455a0c25cb9007d699bef07396a2a4e3 authored by Raymond Hettinger on 27 January 2009, 10:13:45 UTC, committed by Raymond Hettinger on 27 January 2009, 10:13:45 UTC
1 parent 06dc0f5
Raw File
Tip revision: 41db7767455a0c25cb9007d699bef07396a2a4e3 authored by Raymond Hettinger on 27 January 2009, 10:13:45 UTC
Issue 5021: doctest.testfile should set __name__
Tip revision: 41db776
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