piscine/c08/ex03/ft_point.h
Willem Haffmans 607ce08c18 all
2024-09-10 00:18:01 +02:00

23 lines
995 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_point.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/17 18:11:18 by whaffman #+# #+# */
/* Updated: 2024/06/22 11:43:35 by whaffman ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_POINT_H
# define FT_POINT_H
typedef struct s_point
{
int x;
int y;
} t_point;
#endif