Staging
v0.5.1
https://github.com/python/cpython
Revision eae122be62af41d2b6557c0056cc167a3052a034 authored by Alexandre Vassalotti on 02 December 2008, 03:34:24 UTC, committed by Alexandre Vassalotti on 02 December 2008, 03:34:24 UTC
1 parent cc163bb
Raw File
Tip revision: eae122be62af41d2b6557c0056cc167a3052a034 authored by Alexandre Vassalotti on 02 December 2008, 03:34:24 UTC
Fix docutils parsing errors in Misc/NEWS.
Tip revision: eae122b
strdup.c
/* strdup() replacement (from stdwin, if you must know) */

#include "pgenheaders.h"

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