Staging
v0.5.1
https://github.com/python/cpython
Revision e0f1581babe682552d7eadc4e54636b1c2775f0b authored by Raymond Hettinger on 05 July 2004, 05:36:39 UTC, committed by Raymond Hettinger on 05 July 2004, 05:36:39 UTC
* Make capitals default part of DefaultContext
1 parent 71432f1
Raw File
Tip revision: e0f1581babe682552d7eadc4e54636b1c2775f0b authored by Raymond Hettinger on 05 July 2004, 05:36:39 UTC
* Fixup docstrings
Tip revision: e0f1581
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