diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-03 16:35:35 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-03 16:35:35 +0200 |
commit | 3dcf57284e1e83544ed1569e2531061c5a390de3 (patch) | |
tree | 0f596ef25ac92f09751e0705105088c675e338e9 /src/s_init.h | |
parent | fix (diff) | |
download | 42-minishell-3dcf57284e1e83544ed1569e2531061c5a390de3.tar.gz 42-minishell-3dcf57284e1e83544ed1569e2531061c5a390de3.tar.bz2 42-minishell-3dcf57284e1e83544ed1569e2531061c5a390de3.tar.xz 42-minishell-3dcf57284e1e83544ed1569e2531061c5a390de3.tar.zst 42-minishell-3dcf57284e1e83544ed1569e2531061c5a390de3.zip |
Normed s_init
Diffstat (limited to 'src/s_init.h')
-rw-r--r-- | src/s_init.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/s_init.h b/src/s_init.h index a598043..f95918b 100644 --- a/src/s_init.h +++ b/src/s_init.h @@ -10,14 +10,14 @@ /* */ /* ************************************************************************** */ -#ifndef S_INIT_H -#define S_INIT_H +#ifndef FT_S_INIT_H +# define FT_S_INIT_H -#include <stdlib.h> -#include <stdint.h> +# include <stdlib.h> +# include <stdint.h> -#include "s_struct.h" +# include "s_struct.h" -t_msh *init_msh(int32_t argc, char *const argv[], char *const envp[]); +t_msh *s_init_msh(int32_t argc, char *const argv[], char *const envp[]); #endif |