Staging
v0.5.1
https://github.com/python/cpython
Revision 1278c21f5234477aab21531773d65ca7ebd1b81f authored by animalize on 26 February 2018, 18:13:51 UTC, committed by Steve Dower on 26 February 2018, 18:13:51 UTC
1 parent fbf7aac
Raw File
Tip revision: 1278c21f5234477aab21531773d65ca7ebd1b81f authored by animalize on 26 February 2018, 18:13:51 UTC
[3.6] bpo-32394: Remove some TCP options on older version Windows. (GH-5585)
Tip revision: 1278c21
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