42_minishell/minishell.h

31 lines
1.3 KiB
C
Raw Normal View History

2023-02-14 11:11:39 -05:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minishell.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/14 13:45:30 by cchauvet #+# #+# */
2023-03-09 09:07:36 -05:00
/* Updated: 2023/03/09 14:59:49 by erey-bet ### ########.fr */
2023-02-14 11:11:39 -05:00
/* */
/* ************************************************************************** */
2023-02-14 01:21:24 -05:00
#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"
2023-02-14 01:21:24 -05:00
# include <readline/readline.h>
# include <readline/history.h>
# include <signal.h>
2023-02-16 09:13:55 -05:00
2023-01-31 09:02:23 -05:00
#endif