Staging
v0.5.1
https://github.com/python/cpython
Revision 102f72cf1a414f507951cf4988d51cffb8f4e2b4 authored by Steve Dower on 25 March 2015, 04:25:16 UTC, committed by Steve Dower on 25 March 2015, 04:25:16 UTC
1 parent fef9c1b
Raw File
Tip revision: 102f72cf1a414f507951cf4988d51cffb8f4e2b4 authored by Steve Dower on 25 March 2015, 04:25:16 UTC
Adds pydoc shortcut, Edit with IDLE menu, moves redist folder into externals and fixes test script.
Tip revision: 102f72c
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