summaryrefslogtreecommitdiff
path: root/kernel/lib/strcat.c
blob: fcfa4630c1c3066642d0c9b52179dbe9bfab1765 (plain)
1
2
3
4
5
6
7
#include <lib.h>

char *strcat(char *restrict dest, const char *restrict src)
{
	strcpy(dest + strlen(dest), src);
	return dest;
}