Staging
v0.5.1
https://github.com/python/cpython
Revision bdee4947650b9916c79818044d3f4e78263569d1 authored by Georg Brandl on 03 June 2009, 21:00:58 UTC, committed by Georg Brandl on 03 June 2009, 21:00:58 UTC
1 parent 0abc64d
Raw File
Tip revision: bdee4947650b9916c79818044d3f4e78263569d1 authored by Georg Brandl on 03 June 2009, 21:00:58 UTC
#6190: Remove duplicate paragraph.
Tip revision: bdee494
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