-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strlcpy.c
20 lines (17 loc) · 1.03 KB
/
ft_strlcpy.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tiagalex <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/21 16:04:33 by tiagalex #+# #+# */
/* Updated: 2024/10/22 14:11:28 by tiagalex ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
//Copia uma string para outra com o NULL incluido.
size_t ft_strlcpy(char *dest, const char *src, size_t dest_size)
{
size_t src_len;
}