1STRNCAT(9)                 Basic C Library Functions                STRNCAT(9)
2
3
4

NAME

6       strncat - Append a length-limited, NUL-terminated string to another
7

SYNOPSIS

9       char * strncat(char * dest, const char * src, size_t count);
10

ARGUMENTS

12       dest
13           The string to be appended to
14
15       src
16           The string to append to it
17
18       count
19           The maximum numbers of bytes to copy
20

DESCRIPTION

22       Note that in contrast to strncpy, strncat ensures the result is
23       terminated.
24
26Kernel Hackers Manual 3.10         June 2019                        STRNCAT(9)
Impressum