norming ft_strlcpy

This commit is contained in:
Tanguy MAZE 2018-04-27 18:04:42 +02:00
parent 8cb3375f32
commit 0b57c88beb

View File

@ -6,13 +6,13 @@
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/09 11:55:11 by tmaze #+# #+# */
/* Updated: 2018/04/10 14:36:45 by tmaze ### ########.fr */
/* Updated: 2018/04/27 18:04:14 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
size_t ft_strlcpy(char *dst, const char *src, size_t size)
size_t ft_strlcpy(char *dst, const char *src, size_t size)
{
size_t src_len;