Appends not more than maxchar characters from str_ 2 to the end of str_1.
#include <string.h>
char *strncat (char *str_1, const char *str_2,
size_t maxchar);
Function Variants
This function also has variants named _strncat32 and _strncat64
for use with 32-bit and 64-bit pointer sizes, respectively. See
Section 1.8 for more information on using
pointer-size-specific functions.
| x | The address of the first argument, str_1, which is assumed to be large enough to hold the concatenated result. |