aboutsummaryrefslogtreecommitdiff
path: root/include/eval.h
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-06-14 21:26:36 +0200
committerCharles <sircharlesaze@gmail.com>2020-06-14 21:26:36 +0200
commit91d91b0f54ec9795beaf673f20ff87b894a558c4 (patch)
treebc6e084703bd677fcf4ca3ee82898688fc3e2ee7 /include/eval.h
parent47fff4418d3a83ae214429f395232c3536ff03c4 (diff)
downloadminishell-91d91b0f54ec9795beaf673f20ff87b894a558c4.tar.gz
minishell-91d91b0f54ec9795beaf673f20ff87b894a558c4.tar.bz2
minishell-91d91b0f54ec9795beaf673f20ff87b894a558c4.zip
WIP: Added eval cmd with redirection and builtins
Diffstat (limited to 'include/eval.h')
-rw-r--r--include/eval.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/eval.h b/include/eval.h
index b90e8b6..55f1540 100644
--- a/include/eval.h
+++ b/include/eval.h
@@ -6,7 +6,7 @@
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/01 17:05:30 by charles #+# #+# */
-/* Updated: 2020/06/14 12:52:45 by charles ### ########.fr */
+/* Updated: 2020/06/14 20:47:28 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -87,4 +87,11 @@ typedef struct
// char *basename;
} t_error;
+
+/*
+** cmd.c
+*/
+
+int eval_cmd(t_env env, t_path path, t_ast *ast);
+
#endif