shithub: scc

ref: c183aab9883ecbf6caaa473a1c54648257f4954c
dir: /libc/src/strcat.c/

View raw version
/* See LICENSE file for copyright and license details. */

#include <string.h>
#undef strcat

char *
strcat(char * restrict dst, const char * restrict src)
{
	char *ret = dst;

	while (*dst)
		++dst;
	while (*dst++ = *src++)
		/* nothing */;
	return ret;
}