From 2458428219310809319221a99e686e569f0bd8cc Mon Sep 17 00:00:00 2001 From: Hugo LAMY Date: Mon, 16 Dec 2019 13:58:59 +0100 Subject: [PATCH] ajout prototype free_lst a header --- get_next_line.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/get_next_line.h b/get_next_line.h index e2c51c7..83a4235 100644 --- a/get_next_line.h +++ b/get_next_line.h @@ -6,7 +6,7 @@ /* By: hulamy +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/01/29 10:19:37 by hulamy #+# #+# */ -/* Updated: 2019/12/11 00:56:04 by hulamy ### ########.fr */ +/* Updated: 2019/12/16 13:58:03 by hulamy ### ########.fr */ /* */ /* ************************************************************************** */ @@ -32,6 +32,7 @@ int get_next_line(const int fd, char **line); int multi_fd(int fd, t_gnlist **lst); char *ft_strjoinfree(char const *s1, char const *s2); int hasnewline(char *str, t_gnlist *lst, char **line); +void free_lst(t_gnlist **lst, const int fd); size_t ft_strlen(const char *str); void *ft_memmove(void *dst, const void *src, size_t len);