-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strlcat.c
30 lines (27 loc) · 1.2 KB
/
ft_strlcat.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlcat.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jbrown <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/01/17 16:49:42 by jbrown #+# #+# */
/* Updated: 2022/01/24 10:31:44 by jbrown ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
size_t ft_strlcat(char *dst, const char *src, size_t dstsize)
{
size_t i;
size_t j;
if (dstsize <= ft_strlen(dst))
return (dstsize + ft_strlen(src));
i = 0;
j = 0;
while (dst[i])
i++;
while ((i + 1) < dstsize && src[j])
dst[i++] = src[j++];
dst[i] = '\0';
return (ft_strlen(dst) + ft_strlen(&src[j]));
}