-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathft_strlcpy.c
38 lines (34 loc) · 1.32 KB
/
ft_strlcpy.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
36
37
38
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adiaz-lo <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/21 13:45:02 by adiaz-lo #+# #+# */
/* Updated: 2020/01/13 09:08:33 by adiaz-lo ### ########.fr */
/* */
/* ************************************************************************** */
/*
** This function copies 'dstsize' of the string 'src' into 'dst' and returns
** the total length of the result string.
*/
#include "libft.h"
size_t ft_strlcpy(char *dst, const char *src, size_t dstsize)
{
unsigned int i;
int counter;
if (!src)
return (0);
counter = (unsigned int)ft_strlen(src);
if (!dstsize)
return (counter);
i = 0;
while (src[i] && i < (dstsize - 1))
{
dst[i] = src[i];
i++;
}
dst[i] = '\0';
return (counter);
}