aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/string/strcpy.c
blob: 18f3f252ad1d1ed390bf20b0d8f10fa911b23e56 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <mlibc/stdlib.h>

void strcpy(char *dest, const char *orig)
{
    size_t s_orig = strlen(orig);

    for (size_t i = 0; i < s_orig; i++) dest[i] = orig[i];
    dest[s_orig] = 0;
}