aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_get_map_redo.c
diff options
context:
space:
mode:
authorRudy Bousset <rbousset@z2r5p2.le-101.fr>2020-01-29 16:41:06 +0100
committerRudy Bousset <rbousset@z2r5p2.le-101.fr>2020-01-29 16:41:06 +0100
commite51748b78bd082d3f781930ba9eba619f0342bf6 (patch)
tree81871b5c1b6325bc20a2999e3bbd80f418973688 /src/ft_get_map_redo.c
parentGot colors (diff)
download42-cub3d-e51748b78bd082d3f781930ba9eba619f0342bf6.tar.gz
42-cub3d-e51748b78bd082d3f781930ba9eba619f0342bf6.tar.bz2
42-cub3d-e51748b78bd082d3f781930ba9eba619f0342bf6.tar.xz
42-cub3d-e51748b78bd082d3f781930ba9eba619f0342bf6.tar.zst
42-cub3d-e51748b78bd082d3f781930ba9eba619f0342bf6.zip
Better error management
Diffstat (limited to '')
-rw-r--r--src/ft_get_map_redo.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ft_get_map_redo.c b/src/ft_get_map_redo.c
new file mode 100644
index 0000000..9b7793b
--- /dev/null
+++ b/src/ft_get_map_redo.c
@@ -0,0 +1,12 @@
+#include <libft.h>
+#include <cub3d.h>
+#include <stddef.h>
+#include <stdlib.h>
+
+int
+ft_get_map(int fd, t_cub *clist)
+{
+ (void)fd;
+ (void)clist;
+ return (0);
+}