/* * Concatenates the string at `src' onto the string at `dst'. */ char * strcat(dst,src) register char *dst; register char *src; { register char *dp; for ( dp=dst; *dp++; ) ; --dp; while ( *dp++ = *src++ ) ; return(dst); }