Staging
v0.5.1
https://github.com/python/cpython
Revision d5a0be6fc065186c93b781ba6d6308bf1414fb0d authored by Steve Dower on 08 March 2015, 05:25:54 UTC, committed by Steve Dower on 08 March 2015, 05:25:54 UTC
1 parent 79938f2
Raw File
Tip revision: d5a0be6fc065186c93b781ba6d6308bf1414fb0d authored by Steve Dower on 08 March 2015, 05:25:54 UTC
Suppress assert dialogs in test_os
Tip revision: d5a0be6
strdup.c
/* strdup() replacement (from stdwin, if you must know) */

#include "pgenheaders.h"

char *
strdup(const char *str)
{
	if (str != NULL) {
		char *copy = malloc(strlen(str) + 1);
		if (copy != NULL)
			return strcpy(copy, str);
	}
	return NULL;
}
back to top