/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* list_alloc_node.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: maiboyer +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/09 19:57:28 by maiboyer #+# #+# */ /* Updated: 2023/12/09 16:28:30 by maiboyer ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef LIST_ALLOC_NODE_H # define LIST_ALLOC_NODE_H # include "me/types.h" t_list *list_alloc_node(void *content); #endif