/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_point.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gbaconni +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/08/20 10:17:09 by gbaconni #+# #+# */ /* Updated: 2021/08/20 12:05:50 by gbaconni ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_POINT_H # define FT_POINT_H typedef struct s_point { int x; int y; } t_point; void set_point(t_point *point); #endif