aboutsummaryrefslogtreecommitdiffstats
path: root/memory/strcat.c
blob: 118e152fb8dfbc4702f1c4c5df259040cb3738c8 (plain) (blame)
1
2
3
4
5
6
7
#include "memory.h"

char *strcat(char *restrict destination, char const *restrict source)
{
	strcpy(destination + strlen(destination), source);
	return destination;
}