Staging
v0.5.1
https://github.com/python/cpython
Revision 0c3ea5d7a5b757da625abf15d0499a80a50dd99e authored by Fred Drake on 18 March 2002, 16:47:35 UTC, committed by Fred Drake on 18 March 2002, 16:47:35 UTC
1 parent 8f3f845
Raw File
Tip revision: 0c3ea5d7a5b757da625abf15d0499a80a50dd99e authored by Fred Drake on 18 March 2002, 16:47:35 UTC
Fix up unescaped tilde; reported by several people.
Tip revision: 0c3ea5d
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