aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/string/strdup.c
blob: 3b138e830ad671317fdf5e733dfb44528061dd79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <lib/string.h>
#include <memory/alloc.h>

char *strdup(const char *orig)
{
	u32 s_orig = strlen(orig);
	char *ret = (char *)malloc(s_orig + 1);
	strcpy(ret, orig);
	return ret;
}