1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date. The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein. The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
25 .\" References consulted:
26 .\" Linux libc source code
27 .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
29 .\" Modified Sat Jul 24 18:11:47 1993 by Rik Faith (faith@cs.unc.edu)
30 .\" 2007-06-15, Marc Boyer <marc.boyer@enseeiht.fr> + mtk
31 .\" Improve discussion of strncat().
32 .TH STRCAT 3 2021-03-22 "GNU" "Linux Programmer's Manual"
34 strcat, strncat \- concatenate two strings
37 .B #include <string.h>
39 .BI "char *strcat(char *restrict " dest ", const char *restrict " src );
40 .BI "char *strncat(char *restrict " dest ", const char *restrict " src \
51 overwriting the terminating null byte (\(aq\e0\(aq) at the end of
53 and then adds a terminating null byte.
54 The strings may not overlap, and the
57 enough space for the result.
60 is not large enough, program behavior is unpredictable;
61 .IR "buffer overruns are a favorite avenue for attacking secure programs" .
65 function is similar, except that
74 does not need to be null-terminated if it contains
80 the resulting string in
82 is always null-terminated.
97 plus the terminating null byte).
98 Therefore, the size of
101 .IR "strlen(dest)+n+1" .
103 A simple implementation of
110 strncat(char *dest, const char *src, size_t n)
112 size_t dest_len = strlen(dest);
115 for (i = 0 ; i < n && src[i] != \(aq\e0\(aq ; i++)
116 dest[dest_len + i] = src[i];
117 dest[dest_len + i] = \(aq\e0\(aq;
128 functions return a pointer to the resulting string
131 For an explanation of the terms used in this section, see
139 Interface Attribute Value
143 T} Thread safety MT-Safe
149 POSIX.1-2001, POSIX.1-2008, C89, C99, SVr4, 4.3BSD.
151 Some systems (the BSDs, Solaris, and others) provide the following function:
153 size_t strlcat(char *dest, const char *src, size_t size);
155 This function appends the null-terminated string
160 .IR "size\-strlen(dest)\-1"
163 and adds a terminating null byte to the result,
168 This function fixes the buffer overrun problem of
170 but the caller must still handle the possibility of data loss if
173 The function returns the length of the string
175 tried to create; if the return value is greater than or equal to
178 If data loss matters, the caller
180 either check the arguments before the call, or test the function return value.
182 is not present in glibc and is not standardized by POSIX,
183 .\" https://lwn.net/Articles/506530/
184 but is available on Linux via the
193 must find the null byte that terminates the string
195 using a search that starts at the beginning of the string,
196 the execution time of these functions
197 scales according to the length of the string
199 This can be demonstrated by running the program below.
200 (If the goal is to concatenate many strings to one target,
201 then manually copying the bytes from each source string
202 while maintaining a pointer to the end of the target string
203 will provide better performance.)
214 main(int argc, char *argv[])
217 char p[LIM + 1]; /* +1 for terminating null byte */
223 for (int j = 0; j < LIM; j++) {
224 if ((j % 10000) == 0)
225 printf("%d %jd\en", j, (intmax_t) (time(NULL) \- base));