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

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