From 3b9a1d7dcc5683b962f2bf24795e80e1c449cd1f Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 15 Jul 2019 08:15:37 +0200 Subject: c07 passed, c08 in progress, rush01(+ 6x6 try) --- c08/ex03/ft_point.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'c08/ex03/ft_point.h') diff --git a/c08/ex03/ft_point.h b/c08/ex03/ft_point.h index 088b792..5129a4f 100644 --- a/c08/ex03/ft_point.h +++ b/c08/ex03/ft_point.h @@ -6,16 +6,16 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/07 17:12:47 by cacharle #+# #+# */ -/* Updated: 2019/07/07 17:15:20 by cacharle ### ########.fr */ +/* Updated: 2019/07/11 14:13:47 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_POINT_H -#define FT_POINT_H +# define FT_POINT_H typedef struct { int x; int y; -} t_point; +} t_point; #endif -- cgit