Piscine42/C08/ex03/ft_point.h
2023-12-12 17:25:55 +01:00

21 lines
987 B
C
Executable File

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_point.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fgras-ca <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/18 12:51:34 by fgras-ca #+# #+# */
/* Updated: 2022/12/18 12:53:57 by fgras-ca ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_POINT_H
# define FT_POINT_H
typedef struct point{
int x;
int y;
}t_point;
#endif