diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-03-31 21:41:33 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-03-31 21:41:33 +0200 |
| commit | b15ab562d74b5111ac7c9bd6e0ec185435902472 (patch) | |
| tree | 664a55a24d7e36a5f56bf1ce7b0ea96751e0cda0 /include/ms_eval.h | |
| parent | 808d1499f5708ad4eda3612416e62efe6fdff021 (diff) | |
| download | minishell-b15ab562d74b5111ac7c9bd6e0ec185435902472.tar.gz minishell-b15ab562d74b5111ac7c9bd6e0ec185435902472.tar.bz2 minishell-b15ab562d74b5111ac7c9bd6e0ec185435902472.zip | |
Removing ms_ prefix, Removing junk
Diffstat (limited to 'include/ms_eval.h')
| -rw-r--r-- | include/ms_eval.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/include/ms_eval.h b/include/ms_eval.h deleted file mode 100644 index b53b845..0000000 --- a/include/ms_eval.h +++ /dev/null @@ -1,43 +0,0 @@ -#ifndef MS_EVAL_H -# define MS_EVAL_H - -/** -** \file ms_eval.h -** \brief Evaluation module -*/ - -# include "minishell.h" - -/** -** \brief Evaluation state struct -*/ - -typedef struct -{ - int status; - int in_pipe[2]; // need stack pipe - int out_pipe[2]; - t_path path; - t_env env; -} t_eval_state; - -/** -** \brief Evaluation status struct -*/ - -typedef struct -{ - char *err; - int status; -} t_eval_status; - - -/** -** \brief Evaluate an AST -** \param state State of the evaluation -** \param ast Abstract syntax tree to evaluate -*/ - -int ms_eval(t_eval_state *state, t_ast *ast); - -#endif |
