diff --git a/libft.h b/libft.h index 75c81a2..26b1aa8 100644 --- a/libft.h +++ b/libft.h @@ -6,7 +6,7 @@ /* By: kcolin +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/10/15 10:11:54 by kcolin #+# #+# */ -/* Updated: 2024/10/18 15:20:07 by kcolin ### ########.fr */ +/* Updated: 2024/10/21 11:10:52 by kcolin ### ########.fr */ /* */ /* ************************************************************************** */ @@ -63,4 +63,10 @@ void ft_putendl_fd(char *s, int fd); void ft_putnbr_fd(int n, int fd); +typedef struct s_list +{ + void *content; + struct s_list *next; +} t_list; + #endif