1STRNCAT(9) Basic C Library Functions STRNCAT(9)
23
4
NAME
6strncat - Append a length-limited, NUL-terminated string to another
7
SYNOPSIS
9char * strncat(char * dest, const char * src, size_t count);
10
ARGUMENTS
12dest
13The string to be appended to
1415
src
16The string to append to it
1718
count
19The maximum numbers of bytes to copy
20
DESCRIPTION
22Note that in contrast to strncpy, strncat ensures the result is
23terminated.
24
COPYRIGHT
26Kernel Hackers Manual 2.6. November 2011 STRNCAT(9)