-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strlcpy.c
28 lines (25 loc) · 1.12 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: mgraaf <mgraaf@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2021/12/16 14:24:21 by mgraaf #+# #+# */
/* Updated: 2021/12/16 14:24:23 by mgraaf ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
size_t ft_strlcpy(char *dst, const char *src, size_t dstsize)
{
size_t i;
i = 0;
while ((i < (dstsize - 1)) && src[i] && dstsize > 0)
{
dst[i] = src[i];
i++;
}
if (dstsize != 0)
dst[i] = '\0';
return (ft_strlen(src));
}