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