Staging
v0.5.1
https://github.com/python/cpython
Revision bd0c897332faddce4ebdd4698f976c99a70ec346 authored by Brian Curtin on 31 January 2011, 19:35:02 UTC, committed by Brian Curtin on 31 January 2011, 19:35:02 UTC
1 parent f031356
Raw File
Tip revision: bd0c897332faddce4ebdd4698f976c99a70ec346 authored by Brian Curtin on 31 January 2011, 19:35:02 UTC
#11083 typo: RuntimeException -> RuntimeError
Tip revision: bd0c897
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