-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strlcpy.c
28 lines (25 loc) · 1.16 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hcastanh <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/26 02:47:10 by hcastanh #+# #+# */
/* Updated: 2020/05/08 10:23:21 by hcastanh ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
size_t ft_strlcpy(char *dst, const char *src, size_t dstsize)
{
size_t srclen;
srclen = ft_strlen(src);
if (srclen < dstsize)
ft_memcpy(dst, src, srclen + 1);
else if (dstsize != 0)
{
ft_memcpy(dst, src, dstsize - 1);
dst[dstsize - 1] = '\0';
}
return (srclen);
}