char * strncat

char * strncat(char *, const char *, size_t)

The strncat() function is similar to strcat(), except that only the first n characters of src are appended to dest.

Remember:

The strncat() function returns a pointer to the resulting string dest.