summaryrefslogtreecommitdiff
path: root/lib/util/strndup.c
blob: 8031d23984b042fa9f26e42cf9f6869180c821a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* 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