35 lines
1.4 KiB
C
35 lines
1.4 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* bozoshell.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/02/14 13:45:30 by cchauvet #+# #+# */
|
|
/* Updated: 2023/04/14 16:16:31 by erey-bet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef BOZOSHELL_H
|
|
# define BOZOSHELL_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 "./signal/signal.h"
|
|
# include <stdio.h>
|
|
# include <readline/readline.h>
|
|
# include <readline/history.h>
|
|
# include <signal.h>
|
|
# include <sys/types.h>
|
|
# include <sys/wait.h>
|
|
|
|
#endif
|