Staging
v0.5.1
https://github.com/python/cpython
Revision e31b15c4ce64e8eccac12101b57562d5f9c98dfa authored by Ned Deily on 23 December 2016, 09:13:31 UTC, committed by Ned Deily on 23 December 2016, 09:13:31 UTC
1 parent 7e93c84
Raw File
Tip revision: e31b15c4ce64e8eccac12101b57562d5f9c98dfa authored by Ned Deily on 23 December 2016, 09:13:31 UTC
Update documentation index sidebar for 3.6.0 release.
Tip revision: e31b15c
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