aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-06-17 12:52:06 +0200
committerCharles <sircharlesaze@gmail.com>2020-06-17 12:52:06 +0200
commit83c8441919c830c7e683de08330f4edd2fb54d10 (patch)
treece6c9c747adeb1b15dea3a50e047d3f6e1dc29e7 /src/main.c
parenta1704494c323177d4c4d8cf822aa80297181c4fe (diff)
downloadminishell-83c8441919c830c7e683de08330f4edd2fb54d10.tar.gz
minishell-83c8441919c830c7e683de08330f4edd2fb54d10.tar.bz2
minishell-83c8441919c830c7e683de08330f4edd2fb54d10.zip
Added env_export and env_keycmp
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 1dee5b1..dfceb09 100644
--- a/src/main.c
+++ b/src/main.c
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/28 11:45:44 by cacharle #+# #+# */
-/* Updated: 2020/06/16 14:49:59 by charles ### ########.fr */
+/* Updated: 2020/06/17 12:46:04 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -43,7 +43,7 @@ int main(int argc, char **argv, char **envp)
//printf("%s\n", argv[2]);
t_ftlst *lex_out = lexer(ft_strdup(argv[2]));
- //ft_lstiter(lex_out, token_debug);
+ /* ft_lstiter(lex_out, token_debug); */
t_ret *parser_out = parse(lex_out);