2023-02-14 11:11:39 -05:00
|
|
|
/* ************************************************************************** */
|
|
|
|
/* */
|
|
|
|
/* ::: :::::::: */
|
2023-04-14 10:17:35 -04:00
|
|
|
/* bozoshell.h :+: :+: :+: */
|
2023-02-14 11:11:39 -05:00
|
|
|
/* +:+ +:+ +:+ */
|
|
|
|
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
|
|
|
/* +#+#+#+#+#+ +#+ */
|
|
|
|
/* Created: 2023/02/14 13:45:30 by cchauvet #+# #+# */
|
2023-04-14 10:17:35 -04:00
|
|
|
/* Updated: 2023/04/14 16:16:31 by erey-bet ### ########.fr */
|
2023-02-14 11:11:39 -05:00
|
|
|
/* */
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
2023-04-14 10:17:35 -04:00
|
|
|
#ifndef BOZOSHELL_H
|
|
|
|
# define BOZOSHELL_H
|
2023-03-10 06:32:39 -05:00
|
|
|
# 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-03-29 13:07:57 -04:00
|
|
|
# include "./signal/signal.h"
|
2023-04-05 11:32:04 -04:00
|
|
|
# include <stdio.h>
|
2023-02-14 01:21:24 -05:00
|
|
|
# include <readline/readline.h>
|
|
|
|
# include <readline/history.h>
|
2023-03-10 06:32:39 -05:00
|
|
|
# include <signal.h>
|
2023-03-10 07:34:23 -05:00
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/wait.h>
|
2023-02-16 09:13:55 -05:00
|
|
|
|
2023-01-31 09:02:23 -05:00
|
|
|
#endif
|