From 74787eefa2ac85d85b484d0ca5dffc6a2a13331d Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 30 Mar 2020 16:41:54 +0200 Subject: Added Doxyfile --- include/minishell.h | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'include/minishell.h') diff --git a/include/minishell.h b/include/minishell.h index 3398461..04ab243 100644 --- a/include/minishell.h +++ b/include/minishell.h @@ -38,31 +38,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 */ -- cgit