-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strlcpy.c
37 lines (34 loc) · 1.28 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aldokezer <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/18 12:30:58 by orezek #+# #+# */
/* Updated: 2023/11/01 23:33:22 by aldokezer ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
size_t ft_strlcpy(char *to, const char *from, size_t size)
{
size_t src_size;
size_t sizet;
const char *end;
src_size = ft_strlen(from);
sizet = size;
end = from + (sizet - 1);
if (sizet > src_size)
{
while (*from)
*(to++) = *(from++);
*to = '\0';
}
else if (sizet > 0 && sizet <= src_size)
{
while (from < end)
*(to++) = *(from++);
*to = '\0';
}
return (src_size);
}