-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strlcat.c
30 lines (27 loc) · 1.21 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: jecarol <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/28 16:17:28 by jecarol #+# #+# */
/* Updated: 2016/12/08 19:51:06 by jecarol ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
size_t ft_strlcat(char *dst, const char *src, size_t size)
{
size_t i;
size_t result;
result = 0;
i = ft_strlen(src);
result = i;
i = 0;
while (dst[i] && i < size)
i++;
result += (i < size) ? i : size;
if ((int)(size - ft_strlen(dst) - 1) > 0)
ft_strncat(dst, src, size - ft_strlen(dst) - 1);
return (result);
}