Staging
v0.5.1
https://github.com/python/cpython
Revision b9a79c95dcd772969f28cdde3d7d7d36bd419880 authored by Andrew M. Kuchling on 29 July 2006, 21:27:12 UTC, committed by Andrew M. Kuchling on 29 July 2006, 21:27:12 UTC
1 parent b5a701b
Raw File
Tip revision: b9a79c95dcd772969f28cdde3d7d7d36bd419880 authored by Andrew M. Kuchling on 29 July 2006, 21:27:12 UTC
Follow TeX's conventions for hyphens
Tip revision: b9a79c9
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