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/point_main.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 c08/point_main.c (limited to 'c08/point_main.c') diff --git a/c08/point_main.c b/c08/point_main.c new file mode 100644 index 0000000..ec651f4 --- /dev/null +++ b/c08/point_main.c @@ -0,0 +1,27 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* point_main.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/07/11 14:50:27 by cacharle #+# #+# */ +/* Updated: 2019/07/11 14:51:48 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "ex03/ft_point.h" + +void set_point(t_point *point) +{ + point->x = 42; + point->y = 21; +} + +int main(void) +{ + t_point point; + + set_point(&point); + return (0); +} -- cgit