From 487a66394061f2d14a2fa421302966b5442d643f Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Mon, 27 Jul 2020 18:55:07 +0200 Subject: I couldn't see shit --- src/s_init.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/s_init.h (limited to 'src/s_init.h') diff --git a/src/s_init.h b/src/s_init.h new file mode 100644 index 0000000..8ffe954 --- /dev/null +++ b/src/s_init.h @@ -0,0 +1,23 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* s_init.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rbousset +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ +/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef S_INIT_H +#define S_INIT_H + +#include + +#include "s_struct.h" + +t_msh *init_msh(char *const argv[], + char *const envp[]); + +#endif -- cgit v1.2.3 From 2ed2a9d739b6dd3be489792ef510b1f2085ab4ce Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Mon, 3 Aug 2020 16:56:17 +0200 Subject: Cleaner headers --- src/s_init.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/s_init.h') diff --git a/src/s_init.h b/src/s_init.h index 8ffe954..3539086 100644 --- a/src/s_init.h +++ b/src/s_init.h @@ -17,7 +17,6 @@ #include "s_struct.h" -t_msh *init_msh(char *const argv[], - char *const envp[]); +t_msh *init_msh(char *const argv[], char *const envp[]); #endif -- cgit v1.2.3