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

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