summaryrefslogtreecommitdiff
path: root/compat/strdup.c
blob: f3fb978eb3ccfd37baf723d8db3346bcc3e4c4b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "../git-compat-util.h"
 
char *gitstrdup(const char *s1)
{
	size_t len = strlen(s1) + 1;
	char *s2 = malloc(len);
 
	if (s2)
		memcpy(s2, s1, len);
	return s2;
}