ref: 051a76e14d0004c2646546c79792f4536f6218d7
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; }