aboutsummaryrefslogtreecommitdiff
path: root/include/eval.h
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-09-11 19:18:17 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-09-11 19:18:17 +0200
commit9446bb78646bef4e3449a59a9e01118b025402bf (patch)
treea078d7f9244c90ffcc00e493cacee5595c054dbb /include/eval.h
parent98990d5195e93154abbfd16eaa9d1fcc3572bc5c (diff)
downloadminishell-9446bb78646bef4e3449a59a9e01118b025402bf.tar.gz
minishell-9446bb78646bef4e3449a59a9e01118b025402bf.tar.bz2
minishell-9446bb78646bef4e3449a59a9e01118b025402bf.zip
Removing command local variable
Diffstat (limited to 'include/eval.h')
-rw-r--r--include/eval.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/include/eval.h b/include/eval.h
index 7139f34..b799c26 100644
--- a/include/eval.h
+++ b/include/eval.h
@@ -6,7 +6,7 @@
/* By: charles <charles@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/01 17:05:30 by charles #+# #+# */
-/* Updated: 2020/09/10 14:14:56 by charles ### ########.fr */
+/* Updated: 2020/09/11 19:10:30 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -35,7 +35,6 @@ typedef struct
char *exec_path;
char **argv;
t_env env;
- t_env env_local;
t_builtin_entry *builtin;
} t_fork_param_cmd;
@@ -74,10 +73,4 @@ bool exec_is_path(char *exec_name);
bool exec_is_valid(char *exec_path);
char *exec_search_path(t_path path, char *path_var, char *exec_name);
-/*
-** variable.c
-*/
-
-bool variable_extract(t_tok_lst **argv, t_env env, t_env env_local);
-
#endif