ref: 69dcb84e15e76e302abc2e68c7d56364885c9944
dir: /lib/c/src/strcat.c/
#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; }