27 lines
1 KiB
C
27 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* point.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/03/15 15:05:03 by mcolonna #+# #+# */
|
|
/* Updated: 2024/03/15 19:38:46 by mcolonna ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef POINT_H
|
|
# define POINT_H
|
|
|
|
typedef struct s_point
|
|
{
|
|
int x;
|
|
int y;
|
|
} t_point;
|
|
|
|
/*
|
|
t_point point_init(int x, int y);
|
|
void point_addto(t_point *dest, t_point src);
|
|
*/
|
|
|
|
#endif
|