-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strlcat.c
34 lines (31 loc) · 1.23 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlcat.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aceauses <[email protected]. +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/16 17:20:44 by aceauses #+# #+# */
/* Updated: 2023/03/31 16:08:51 by aceauses ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
size_t ft_strlcat(char *dst, const char *src, size_t dstsize)
{
unsigned int i;
unsigned int j;
i = 0;
while (dst[i] && i < dstsize)
i++;
j = i;
while (dstsize == 0)
return (j + ft_strlen(src));
while (src[i - j] && i < dstsize - 1)
{
dst[i] = src[i - j];
i++;
}
if (j < dstsize)
dst[i] = 0;
return (j + ft_strlen(src));
}