aboutsummaryrefslogtreecommitdiff
path: root/lib/compat/strndup.c
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-01-31 11:21:30 +0100
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-01-31 13:51:49 +0100
commitcdccc69c62579b0c13b35fad0728079652b8f3c9 (patch)
tree9fa54c710f73c5e08a9c8466e7a712eb63ee07ac /lib/compat/strndup.c
parent2182129c8f359c4fa1390eaba7a65b595ccd4182 (diff)
Move library source into src sub-directory
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/compat/strndup.c')
-rw-r--r--lib/compat/strndup.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/compat/strndup.c b/lib/compat/strndup.c
deleted file mode 100644
index 7e77f6c..0000000
--- a/lib/compat/strndup.c
+++ /dev/null
@@ -1,31 +0,0 @@
-/* SPDX-License-Identifier: LGPL-3.0-or-later */
-/*
- * strndup.c
- *
- * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
- */
-#include "config.h"
-#include "compat.h"
-
-#include <string.h>
-#include <stdlib.h>
-
-#ifndef HAVE_STRNDUP
-char *strndup(const char *str, size_t max_len)
-{
- size_t len = 0;
- char *out;
-
- while (len < max_len && str[len] != '\0')
- ++len;
-
- out = malloc(len + 1);
-
- if (out != NULL) {
- memcpy(out, str, len);
- out[len] = '\0';
- }
-
- return out;
-}
-#endif