Staging
v0.5.1
https://github.com/python/cpython
Revision 348b7c8304b29d5cef5e1cf9530c509d663ec433 authored by Georg Brandl on 30 June 2006, 18:47:56 UTC, committed by Georg Brandl on 30 June 2006, 18:47:56 UTC
1 parent 0861292
Raw File
Tip revision: 348b7c8304b29d5cef5e1cf9530c509d663ec433 authored by Georg Brandl on 30 June 2006, 18:47:56 UTC
Document decorator usage of property.
Tip revision: 348b7c8
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