Staging
v0.8.1
https://github.com/python/cpython
Revision 2d34f41bee54f82a3cc3d7da47af05b4227300bd authored by Georg Brandl on 27 October 2013, 08:22:59 UTC, committed by Georg Brandl on 27 October 2013, 08:22:59 UTC
1 parent 325a1c2
Raw File
Tip revision: 2d34f41bee54f82a3cc3d7da47af05b4227300bd authored by Georg Brandl on 27 October 2013, 08:22:59 UTC
Bump to 3.3.3rc1.
Tip revision: 2d34f41
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