Staging
v0.5.1
https://github.com/python/cpython
Revision e71268f93fa7e33f87180e2895aec5a14505c9fb authored by Georg Brandl on 12 August 2008, 08:47:02 UTC, committed by Georg Brandl on 12 August 2008, 08:47:02 UTC
1 parent 0322154
Raw File
Tip revision: e71268f93fa7e33f87180e2895aec5a14505c9fb authored by Georg Brandl on 12 August 2008, 08:47:02 UTC
#3205: bz2 iterator fails silently on MemoryError
Tip revision: e71268f
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