20 lines
1,018 B
C
20 lines
1,018 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* list_alloc_node.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* 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
|