ft_lstnew: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-21 11:28:06 +02:00
parent 1126640edc
commit 8777bfc3c3
3 changed files with 50 additions and 2 deletions

View file

@ -6,7 +6,7 @@
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 10:11:54 by kcolin #+# #+# */
/* Updated: 2024/10/21 11:10:52 by kcolin ### ########.fr */
/* Updated: 2024/10/21 11:11:02 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
@ -69,4 +69,6 @@ typedef struct s_list
struct s_list *next;
} t_list;
t_list *ft_lstnew(void *content);
#endif