Welcome to mirror list, hosted at ThFree Co, Russian Federation.

strdup.c « compat - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
}