From ec87e27fcf82ff22a685b22e4cb5a4f787dc05b7 Mon Sep 17 00:00:00 2001 From: Adam Joly Date: Sun, 4 Feb 2024 15:13:26 +0100 Subject: [PATCH] add includes to .h --- libft.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/libft.h b/libft.h index e4e67d2..0652da8 100644 --- a/libft.h +++ b/libft.h @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* libft.h :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: adjoly +#+ +:+ +#+ */ +/* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/01 10:06:03 by adjoly #+# #+# */ -/* Updated: 2023/11/18 18:35:21 by adjoly ### ########.fr */ +/* Updated: 2024/02/04 15:12:48 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ @@ -17,6 +17,9 @@ # include # include +# include "print/printf/ft_printf.h" +# include "io/get_next_line/get_next_line.h" + typedef struct s_list { void *content; @@ -76,4 +79,4 @@ void ft_putnbrbase_fd(int n, char *base, int fd); void ft_putnbrbase(int n, char *base); void ft_putnbr(int n); -#endif \ No newline at end of file +#endif