-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strlcat.c
35 lines (32 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
33
34
35
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlcat.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mucakmak <mucakmak@student.42istanbul.c +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/04 12:33:45 by mucakmak #+# #+# */
/* Updated: 2023/07/12 11:41:00 by mucakmak ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
size_t ft_strlcat(char *dst, const char *src, size_t dstsize)
{
size_t i;
size_t j;
i = 0;
j = 0;
while (dst[i] && i < dstsize)
i++;
if (dstsize > ft_strlen(dst))
{
while (src[j] && ((i + j + 1) < dstsize))
{
dst[i + j] = src[j];
j++;
}
}
if (i < dstsize)
dst[i + j] = '\0';
return (i + ft_strlen(src));
}