summaryrefslogtreecommitdiffstats
path: root/usr/klibc/strndup.c
blob: 20eaa8b5c7f32ef49c48a8b359a3fc22342e3b0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * strndup.c
 */

#include <string.h>
#include <stdlib.h>

char *strndup(const char *s, size_t n)
{
	size_t l = strnlen(s, n);
	char *d = malloc(l + 1);
	if (!d)
		return NULL;

	memcpy(d, s, l);
	d[l] = '\0';
	return d;
}