Blame


1 ab1569ee 2023-05-06 op /*
2 ab1569ee 2023-05-06 op * Copyright (c) 1998, 2015 Todd C. Miller <millert@openbsd.org>
3 ab1569ee 2023-05-06 op *
4 ab1569ee 2023-05-06 op * Permission to use, copy, modify, and distribute this software for any
5 ab1569ee 2023-05-06 op * purpose with or without fee is hereby granted, provided that the above
6 ab1569ee 2023-05-06 op * copyright notice and this permission notice appear in all copies.
7 ab1569ee 2023-05-06 op *
8 ab1569ee 2023-05-06 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 ab1569ee 2023-05-06 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 ab1569ee 2023-05-06 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 ab1569ee 2023-05-06 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 ab1569ee 2023-05-06 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 ab1569ee 2023-05-06 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 ab1569ee 2023-05-06 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 ab1569ee 2023-05-06 op */
16 ab1569ee 2023-05-06 op
17 ab1569ee 2023-05-06 op #include <sys/types.h>
18 ab1569ee 2023-05-06 op #include <string.h>
19 ab1569ee 2023-05-06 op
20 ab1569ee 2023-05-06 op /*
21 ab1569ee 2023-05-06 op * Appends src to string dst of size dsize (unlike strncat, dsize is the
22 ab1569ee 2023-05-06 op * full size of dst, not space left). At most dsize-1 characters
23 ab1569ee 2023-05-06 op * will be copied. Always NUL terminates (unless dsize <= strlen(dst)).
24 ab1569ee 2023-05-06 op * Returns strlen(src) + MIN(dsize, strlen(initial dst)).
25 ab1569ee 2023-05-06 op * If retval >= dsize, truncation occurred.
26 ab1569ee 2023-05-06 op */
27 ab1569ee 2023-05-06 op size_t
28 ab1569ee 2023-05-06 op strlcat(char *dst, const char *src, size_t dsize)
29 ab1569ee 2023-05-06 op {
30 ab1569ee 2023-05-06 op const char *odst = dst;
31 ab1569ee 2023-05-06 op const char *osrc = src;
32 ab1569ee 2023-05-06 op size_t n = dsize;
33 ab1569ee 2023-05-06 op size_t dlen;
34 ab1569ee 2023-05-06 op
35 ab1569ee 2023-05-06 op /* Find the end of dst and adjust bytes left but don't go past end. */
36 ab1569ee 2023-05-06 op while (n-- != 0 && *dst != '\0')
37 ab1569ee 2023-05-06 op dst++;
38 ab1569ee 2023-05-06 op dlen = dst - odst;
39 ab1569ee 2023-05-06 op n = dsize - dlen;
40 ab1569ee 2023-05-06 op
41 ab1569ee 2023-05-06 op if (n-- == 0)
42 ab1569ee 2023-05-06 op return(dlen + strlen(src));
43 ab1569ee 2023-05-06 op while (*src != '\0') {
44 ab1569ee 2023-05-06 op if (n != 0) {
45 ab1569ee 2023-05-06 op *dst++ = *src;
46 ab1569ee 2023-05-06 op n--;
47 ab1569ee 2023-05-06 op }
48 ab1569ee 2023-05-06 op src++;
49 ab1569ee 2023-05-06 op }
50 ab1569ee 2023-05-06 op *dst = '\0';
51 ab1569ee 2023-05-06 op
52 ab1569ee 2023-05-06 op return(dlen + (src - osrc)); /* count does not include NUL */
53 ab1569ee 2023-05-06 op }