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

void strcati(char *dest, const char *orig)
{
	size_t s_orig = strlen(orig);
	strdisp(dest, (int)s_orig);
	for (size_t i = 0; i < s_orig; i++)
		dest[i] = orig[i];
}