Staging
v0.5.1
https://github.com/python/cpython
Revision 04d11a73fa0d84a6386e1b31db00f6b9cca08184 authored by Serhiy Storchaka on 13 October 2013, 15:51:59 UTC, committed by Serhiy Storchaka on 13 October 2013, 15:51:59 UTC
1 parent fd1c3d3
Raw File
Tip revision: 04d11a73fa0d84a6386e1b31db00f6b9cca08184 authored by Serhiy Storchaka on 13 October 2013, 15:51:59 UTC
Issue #19203: Improved cross-references in the curses howto.
Tip revision: 04d11a7
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