Staging
v0.8.1
https://github.com/python/cpython
Revision 9155aa742cf5342e4033dce01458d0d2d9d54cd9 authored by Marc-André Lemburg on 29 April 2008, 11:14:08 UTC, committed by Marc-André Lemburg on 29 April 2008, 11:14:08 UTC
1 parent a2f837f
Raw File
Tip revision: 9155aa742cf5342e4033dce01458d0d2d9d54cd9 authored by Marc-André Lemburg on 29 April 2008, 11:14:08 UTC
Cleanup the Unicode header documentation and formatting a bit.
Tip revision: 9155aa7
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