20 lines
No EOL
1,010 B
C
20 lines
No EOL
1,010 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* list_get_last.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/09 20:37:08 by maiboyer #+# #+# */
|
|
/* Updated: 2023/12/09 16:29:37 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef LIST_GET_LAST_H
|
|
# define LIST_GET_LAST_H
|
|
|
|
# include "me/types.h"
|
|
|
|
t_list *list_get_last(t_list *list);
|
|
|
|
#endif |