Staging
v0.8.1
https://github.com/python/cpython
Revision 463c3f3eefbb706f4da1f17eb25a83968b636094 authored by Larry Hastings on 12 June 2016, 05:24:03 UTC, committed by Larry Hastings on 12 June 2016, 05:24:03 UTC
1 parent 6e77ebe
Raw File
Tip revision: 463c3f3eefbb706f4da1f17eb25a83968b636094 authored by Larry Hastings on 12 June 2016, 05:24:03 UTC
Release bump for 3.4.5rc1.
Tip revision: 463c3f3
strdup.c
/* strdup() replacement (from stdwin, if you must know) */

#include "pgenheaders.h"

char *
strdup(const char *str)
{
	if (str != NULL) {
		char *copy = malloc(strlen(str) + 1);
		if (copy != NULL)
			return strcpy(copy, str);
	}
	return NULL;
}
back to top