Staging
v0.5.1
https://github.com/python/cpython
Revision 10df96affd0f3e21a7750db98038f8419b91db95 authored by Mariatta on 06 July 2017, 03:55:18 UTC, committed by GitHub on 06 July 2017, 03:55:18 UTC
(cherry picked from commit 76c567ee27342d76f631a35c8291b715b2a61f3e)
1 parent c48a000
Raw File
Tip revision: 10df96affd0f3e21a7750db98038f8419b91db95 authored by Mariatta on 06 July 2017, 03:55:18 UTC
Fix trivial typo in json module docstring (GH-2274) (GH-2431)
Tip revision: 10df96a
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