Staging
v0.5.1
https://github.com/python/cpython
Revision cdab6f339b46228cd898db45f4746c22d5f58ef0 authored by Larry Hastings on 09 August 2015, 10:41:22 UTC, committed by Larry Hastings on 09 August 2015, 10:41:22 UTC
1 parent 71ea65f
Raw File
Tip revision: cdab6f339b46228cd898db45f4746c22d5f58ef0 authored by Larry Hastings on 09 August 2015, 10:41:22 UTC
Added tag v3.5.0rc1 for changeset 01a684180b19
Tip revision: cdab6f3
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