summaryrefslogtreecommitdiffstats
path: root/src/m_minishell.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-07-27 22:38:54 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-07-27 22:38:54 +0200
commit280ecd341f1ec88abe325fa69b197bca3e43d2f1 (patch)
tree3f10bdb634f5a727bbf2e410072bc8f6537310e4 /src/m_minishell.c
parentIn progress (diff)
download42-minishell-280ecd341f1ec88abe325fa69b197bca3e43d2f1.tar.gz
42-minishell-280ecd341f1ec88abe325fa69b197bca3e43d2f1.tar.bz2
42-minishell-280ecd341f1ec88abe325fa69b197bca3e43d2f1.tar.xz
42-minishell-280ecd341f1ec88abe325fa69b197bca3e43d2f1.tar.zst
42-minishell-280ecd341f1ec88abe325fa69b197bca3e43d2f1.zip
Now can subst env vars
Diffstat (limited to '')
-rw-r--r--src/m_minishell.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/m_minishell.c b/src/m_minishell.c
index 1e065b4..66426b7 100644
--- a/src/m_minishell.c
+++ b/src/m_minishell.c
@@ -21,6 +21,7 @@
#include "s_struct.h"
#include "s_init.h"
#include "s_destroy.h"
+#include "u_vars_next.h"
int
main(int argc,
@@ -39,6 +40,7 @@ int
ft_dprintf(2, "%s\n", strerror(errno));
return (FT_RET_ALLOC);
}
+ /* TODO: DELET THIS */
ret = m_argv(argc, argv, msh);
s_destroy(msh);
return (ret);