aboutsummaryrefslogtreecommitdiff
path: root/include/minishell.h
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-03-30 16:41:54 +0200
committerCharles <sircharlesaze@gmail.com>2020-03-30 16:41:54 +0200
commit74787eefa2ac85d85b484d0ca5dffc6a2a13331d (patch)
tree61000ecb790c31ec317f0f7758db4e2595e3bfbc /include/minishell.h
parentffec9915be37ceebeadeb12958cbb7424cbd3633 (diff)
downloadminishell-74787eefa2ac85d85b484d0ca5dffc6a2a13331d.tar.gz
minishell-74787eefa2ac85d85b484d0ca5dffc6a2a13331d.tar.bz2
minishell-74787eefa2ac85d85b484d0ca5dffc6a2a13331d.zip
Added Doxyfile
Diffstat (limited to 'include/minishell.h')
-rw-r--r--include/minishell.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/include/minishell.h b/include/minishell.h
index 3398461..04ab243 100644
--- a/include/minishell.h
+++ b/include/minishell.h
@@ -39,31 +39,6 @@ typedef t_ftht* t_path;
typedef t_ftht* t_env;
/*
-** eval.c
-*/
-
-typedef struct
-{
- t_status_type type;
- union
- {
- char *error_msg;
- char *arg;
- int code;
- } value;
-} t_status;
-
-typedef enum
-{
- STYPE_ERROR,
- STYPE_ARG,
- STYPE_FILE,
- // ...
-} t_status_type;
-
-int ms_eval(t_path path, t_env env, t_ast *ast);
-
-/*
** path.c
*/