diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-11-22 11:01:09 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-11-22 11:28:23 +0100 |
commit | eafaffa0f09b7c22eed906ef5356b1460d44da55 (patch) | |
tree | e77a1c3ddf714301b93810c2d123b6a7fcdc2ee8 /lib/util/strndup.c | |
parent | 435c9ef3de5797d7c49fa8fae12a02fd6bd209d6 (diff) |
Cleanup: move all the compatibillity fluff to a dedicated "libcompat"
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/util/strndup.c')
-rw-r--r-- | lib/util/strndup.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/util/strndup.c b/lib/util/strndup.c deleted file mode 100644 index 8031d23..0000000 --- a/lib/util/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 "util/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 |