From e7acdc820fefa41ae00a7c776388e3d17250a2e9 Mon Sep 17 00:00:00 2001 From: Cabergs Charles Date: Wed, 24 Jul 2019 08:02:55 +0200 Subject: c12 passed, c13 start --- c12/ex01/ft_list.h | 6 +++--- c12/ex01/ft_list_push_front.c | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'c12/ex01') diff --git a/c12/ex01/ft_list.h b/c12/ex01/ft_list.h index 8b736b4..a7a433c 100644 --- a/c12/ex01/ft_list.h +++ b/c12/ex01/ft_list.h @@ -6,12 +6,12 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/09 14:33:17 by cacharle #+# #+# */ -/* Updated: 2019/07/09 14:42:55 by cacharle ### ########.fr */ +/* Updated: 2019/07/23 15:19:22 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_LIST_H -#define FT_LIST_H +# define FT_LIST_H typedef struct s_list { @@ -19,6 +19,6 @@ typedef struct s_list void *data; } t_list; -t_list *ft_create_elem(void *data); +t_list *ft_create_elem(void *data); #endif diff --git a/c12/ex01/ft_list_push_front.c b/c12/ex01/ft_list_push_front.c index 76fedd9..867b007 100644 --- a/c12/ex01/ft_list_push_front.c +++ b/c12/ex01/ft_list_push_front.c @@ -6,11 +6,11 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/09 17:19:14 by cacharle #+# #+# */ -/* Updated: 2019/07/17 17:10:46 by cacharle ### ########.fr */ +/* Updated: 2019/07/23 15:16:43 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ - +#include #include "ft_list.h" void ft_list_push_front(t_list **begin_list, void *data) -- cgit