/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_point.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gtertysh +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/05 22:35:46 by gtertysh #+# #+# */ /* Updated: 2016/11/05 22:38:05 by gtertysh ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_POINT_H # define FT_POINT_H typedef struct s_point { int x; int y; } t_point; #endif