aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/string/strcpy.c
blob: 3a4832c40ab4e38870a0a61cd4bc052f789655af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#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;
}