diff options
Diffstat (limited to 'c08/ex03')
| -rw-r--r-- | c08/ex03/ft_point.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/c08/ex03/ft_point.h b/c08/ex03/ft_point.h new file mode 100644 index 0000000..088b792 --- /dev/null +++ b/c08/ex03/ft_point.h @@ -0,0 +1,21 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_point.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/07/07 17:12:47 by cacharle #+# #+# */ +/* Updated: 2019/07/07 17:15:20 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef FT_POINT_H +#define FT_POINT_H + +typedef struct { + int x; + int y; +} t_point; + +#endif |
