ft_strlcpy: fix incorrect name

This commit is contained in:
Khaïs COLIN 2024-10-17 10:43:33 +02:00
parent a38e9e5f94
commit df37e074f3

View file

@ -6,7 +6,7 @@
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */ /* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 14:47:09 by kcolin #+# #+# */ /* Created: 2024/10/15 14:47:09 by kcolin #+# #+# */
/* Updated: 2024/10/16 15:19:03 by kcolin ### ########.fr */ /* Updated: 2024/10/17 10:43:00 by kcolin ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -19,7 +19,7 @@ static int min(size_t a, size_t b)
return (a); return (a);
} }
size_t strlcpy(char *dst, const char *src, size_t size) size_t ft_strlcpy(char *dst, const char *src, size_t size)
{ {
size_t i; size_t i;