42_C_PISCINE/C/c08v3/ex03/ft_point.h
Camille Chauvet 29ed24d567 init
2023-05-17 16:45:25 +00:00

21 lines
990 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_point.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/27 09:24:28 by cchauvet #+# #+# */
/* Updated: 2022/07/27 18:02:43 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_POINT_H
# define FT_POINT_H
typedef struct s_point
{
int x;
int y;
} t_point;
#endif