aboutsummaryrefslogtreecommitdiff
path: root/c08/ex03
diff options
context:
space:
mode:
Diffstat (limited to 'c08/ex03')
-rw-r--r--c08/ex03/ft_point.h6
1 files changed, 3 insertions, 3 deletions
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 <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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