ref: bd06ba3a5ea0f122fbb6b7c284c32068220dd33b
dir: /src/libc/string/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++) ; return ret; }