Staging
v0.8.1
https://github.com/python/cpython
Revision 95c6597a47295e7a77184feadcad8749d6198d5b authored by Larry Hastings on 20 July 2018, 00:55:28 UTC, committed by Larry Hastings on 20 July 2018, 00:55:28 UTC
1 parent 76aa2c0
Raw File
Tip revision: 95c6597a47295e7a77184feadcad8749d6198d5b authored by Larry Hastings on 20 July 2018, 00:55:28 UTC
PyDoc topics refresh & blurb release for 3.5.6rc1.
Tip revision: 95c6597
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