-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strlcat.c
32 lines (29 loc) · 1.22 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
31
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlcat.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: damartin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/02 18:42:47 by damartin #+# #+# */
/* Updated: 2022/02/10 16:38:41 by damartin ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
size_t ft_strlcat(char *dst, const char *src, size_t dstsize)
{
size_t i;
size_t len;
i = 0;
len = ft_strlen(dst);
if (dstsize <= len)
return (dstsize + ft_strlen(src));
while (src[i] != '\0' && (len + 1) < dstsize)
{
dst[len] = src[i];
i++;
len++;
}
dst[len] = '\0';
return (ft_strlen(dst) + ft_strlen(&src[i]));
}