aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_init_bmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft_init_bmp.c')
-rw-r--r--src/ft_init_bmp.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/ft_init_bmp.c b/src/ft_init_bmp.c
new file mode 100644
index 0000000..cc8d59b
--- /dev/null
+++ b/src/ft_init_bmp.c
@@ -0,0 +1,27 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_init_bmp.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/14 17:28:46 by rbousset #+# #+# */
+/* Updated: 2020/02/14 17:28:46 by rbousset ### ########lyon.fr */
+/* */
+/* ************************************************************************** */
+
+#include <cub3d.h>
+#include <stdint.h>
+
+t_bmp
+ ft_init_bmp(void)
+{
+ t_bmp bmp;
+
+ bmp.file_type = 0x4d42;
+ bmp.file_size = 0;
+ bmp.reserv_one = 0;
+ bmp.reserv_two = 0;
+ bmp.offset_data = 0;
+ return (bmp);
+}