31 lines
1.3 KiB
C
31 lines
1.3 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* minishell.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/02/14 13:45:30 by cchauvet #+# #+# */
|
|
/* Updated: 2023/03/09 14:59:49 by erey-bet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef MINISHELL_H
|
|
# define MINISHELL_H
|
|
# include "./env/env.h"
|
|
# include "./cmd/cmd.h"
|
|
# include "./parse/parse.h"
|
|
# include "./syntax/syntax.h"
|
|
# include "./execution/execution.h"
|
|
# include "./builtins/builtins.h"
|
|
# include "./format/format.h"
|
|
# include "./redirection/redirection.h"
|
|
# include "./libftx/libftx.h"
|
|
# include "./utils/utils.h"
|
|
# include "./data/data.h"
|
|
# include <readline/readline.h>
|
|
# include <readline/history.h>
|
|
# include <signal.h>
|
|
|
|
#endif
|