-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strlcpy.c
30 lines (27 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
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adamarqu <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/21 11:40:47 by adamarqu #+# #+# */
/* Updated: 2024/10/21 11:40:48 by adamarqu ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
size_t ft_strlcpy(char *dest, const char *src, size_t size)
{
size_t src_len;
src_len = ft_strlen(src);
if (size > 0)
{
while (*src && size > 1)
{
*dest++ = *src++;
size--;
}
*dest = '\0';
}
return (src_len);
}