1 /*
2 +----------------------------------------------------------------------+
3 | PHP Version 7 |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 1997-2018 The PHP Group |
6 +----------------------------------------------------------------------+
7 | This source file is subject to version 3.01 of the PHP license, |
8 | that is bundled with this package in the file LICENSE, and is |
9 | available through the world-wide-web at the following url: |
10 | http://www.php.net/license/3_01.txt |
11 | If you did not receive a copy of the PHP license and are unable to |
12 | obtain it through the world-wide-web, please send a note to |
13 | license@php.net so we can mail you a copy immediately. |
14 +----------------------------------------------------------------------+
15 | Author: |
16 +----------------------------------------------------------------------+
17 */
18
19 /* $Id$ */
20
21 #include "php.h"
22
23 #ifdef USE_STRLCAT_PHP_IMPL
24
25 /* $OpenBSD: strlcat.c,v 1.18 2016/10/16 17:37:39 dtucker Exp $ */
26
27 /*
28 * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
29 * All rights reserved.
30 *
31 * Redistribution and use in source and binary forms, with or without
32 * modification, are permitted provided that the following conditions
33 * are met:
34 * 1. Redistributions of source code must retain the above copyright
35 * notice, this list of conditions and the following disclaimer.
36 * 2. Redistributions in binary form must reproduce the above copyright
37 * notice, this list of conditions and the following disclaimer in the
38 * documentation and/or other materials provided with the distribution.
39 * 3. The name of the author may not be used to endorse or promote products
40 * derived from this software without specific prior written permission.
41 *
42 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
43 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
44 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
45 * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
46 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
47 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
48 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
49 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
50 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
51 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
52 */
53
54 #if defined(LIBC_SCCS) && !defined(lint)
55 static char *rcsid = "$OpenBSD: strlcat.c,v 1.17 2016/10/14 18:19:04 dtucker Exp $";
56 #endif /* LIBC_SCCS and not lint */
57
58 #include <sys/types.h>
59 #include <string.h>
60
61 /*
62 * Appends src to string dst of size siz (unlike strncat, siz is the
63 * full size of dst, not space left). At most siz-1 characters
64 * will be copied. Always NUL terminates (unless siz <= strlen(dst)).
65 * Returns strlen(src) + MIN(siz, strlen(initial dst).
66 * If retval >= siz, truncation occurred.
67 */
php_strlcat(dst,src,siz)68 PHPAPI size_t php_strlcat(dst, src, siz)
69 char *dst;
70 const char *src;
71 size_t siz;
72 {
73 const char *d = dst;
74 const char *s = src;
75 size_t n = siz;
76 size_t dlen;
77
78 /* Find the end of dst and adjust bytes left but don't go past end */
79 while (n-- != 0 && *dst != '\0')
80 dst++;
81 dlen = dst - d;
82 n = siz - dlen;
83
84 if (n-- == 0)
85 return(dlen + strlen(src));
86 while (*src != '\0') {
87 if (n != 0) {
88 *dst++ = *src;
89 n--;
90 }
91 src++;
92 }
93 *dst = '\0';
94
95 return(dlen + (src - s));
96 }
97
98 #endif /* !HAVE_STRLCAT */
99
100 /*
101 * Local variables:
102 * tab-width: 4
103 * c-basic-offset: 4
104 * End:
105 * vim600: sw=4 ts=4 fdm=marker
106 * vim<600: sw=4 ts=4
107 */
108