summaryrefslogtreecommitdiff
path: root/compat/strlcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'compat/strlcpy.c')
-rw-r--r--compat/strlcpy.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/compat/strlcpy.c b/compat/strlcpy.c
new file mode 100644
index 0000000..4024c36
--- /dev/null
+++ b/compat/strlcpy.c
@@ -0,0 +1,13 @@
+#include "../git-compat-util.h"
+
+size_t gitstrlcpy(char *dest, const char *src, size_t size)
+{
+ size_t ret = strlen(src);
+
+ if (size) {
+ size_t len = (ret >= size) ? size - 1 : ret;
+ memcpy(dest, src, len);
+ dest[len] = '\0';
+ }
+ return ret;
+}