aboutsummaryrefslogtreecommitdiff
path: root/c08/ex03
diff options
context:
space:
mode:
authorCabergs Charles <cacharle@e-r6-p7.s19.be>2019-07-08 12:12:58 +0200
committerCabergs Charles <cacharle@e-r6-p7.s19.be>2019-07-08 12:12:58 +0200
commit803d5e42138e1f0f69f6d8953aea5cd23f5b72ee (patch)
tree5888339d16bd74b1cd14a63b8c5ecf39fb9091f2 /c08/ex03
parent1fd0ebe76b81187fa428b4d699fb70cd4407fef5 (diff)
downloadpiscine-803d5e42138e1f0f69f6d8953aea5cd23f5b72ee.tar.gz
piscine-803d5e42138e1f0f69f6d8953aea5cd23f5b72ee.tar.bz2
piscine-803d5e42138e1f0f69f6d8953aea5cd23f5b72ee.zip
c05/c06 normed, c07/c08 begining
Diffstat (limited to 'c08/ex03')
-rw-r--r--c08/ex03/ft_point.h21
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