42-archive/42-piscine-c/d08/ex04/ft_point.h
2016-08-25 20:50:28 +02:00

22 lines
995 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_point.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/08/08 09:23:43 by jhalford #+# #+# */
/* Updated: 2016/08/11 11:03:12 by jhalford ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_POINT_H
# define FT_POINT_H
typedef struct s_point
{
int x;
int y;
} t_point;
#endif