-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strlcpy.c
31 lines (28 loc) · 1.13 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ahmaymou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/08 14:38:20 by ahmaymou #+# #+# */
/* Updated: 2022/10/25 18:51:14 by ahmaymou ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
size_t ft_strlcpy(char *dst, const char *src, size_t dstsize)
{
size_t len;
len = ft_strlen(src);
if (!dstsize)
return (len);
while (*src && (dstsize - 1))
{
*dst = *src;
dst++;
src++;
dstsize--;
}
*dst = '\0';
return (len);
}