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