summaryrefslogtreecommitdiffstats
path: root/src/ft_s_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft_s_init.c')
-rw-r--r--src/ft_s_init.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/ft_s_init.c b/src/ft_s_init.c
new file mode 100644
index 0000000..82293be
--- /dev/null
+++ b/src/ft_s_init.c
@@ -0,0 +1,25 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_s_init.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */
+/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */
+/* */
+/* ************************************************************************** */
+
+#include <ft_s_init.h>
+
+t_data
+*ft_init_data(void)
+{
+ t_data *data;
+
+ if (!(data = (t_data*)malloc(sizeof(t_data))))
+ {
+ return (NULL);
+ }
+ return (data);
+}