mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
12 lines
169 B
C
12 lines
169 B
C
|
#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;
|
||
|
}
|