Staging
v0.5.1
https://github.com/python/cpython
Revision 700c8fe2bac53ae4417a97da6c536f0da71ee060 authored by Tim Golden on 27 April 2014, 15:39:33 UTC, committed by Tim Golden on 27 April 2014, 15:39:33 UTC
1 parent 3c5816f
Raw File
Tip revision: 700c8fe2bac53ae4417a97da6c536f0da71ee060 authored by Tim Golden on 27 April 2014, 15:39:33 UTC
Issue #9291 Add ACKS & NEWS
Tip revision: 700c8fe
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