aboutsummaryrefslogtreecommitdiff
path: root/src/parse
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-06-13 10:34:30 +0200
committernass1pro <nass1pro@gmail.com>2020-06-13 11:46:02 +0200
commit72ec3b700e8e3142eb9e79098a357f01a6085589 (patch)
treed866162477544c8ff96c33c57ae119b458432d17 /src/parse
parentd971bd8d16608f316396aba7a579d0b1f1af5aeb (diff)
downloadminishell-72ec3b700e8e3142eb9e79098a357f01a6085589.tar.gz
minishell-72ec3b700e8e3142eb9e79098a357f01a6085589.tar.bz2
minishell-72ec3b700e8e3142eb9e79098a357f01a6085589.zip
Fixing multiple definition of lexer
Diffstat (limited to 'src/parse')
-rw-r--r--src/parse/lexer.c16
-rw-r--r--src/parse/parse.c16
2 files changed, 0 insertions, 32 deletions
diff --git a/src/parse/lexer.c b/src/parse/lexer.c
deleted file mode 100644
index 74a3bd4..0000000
--- a/src/parse/lexer.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-** \file lexer.c
-** \brief Lexer
-*/
-
-#include "minishell.h"
-
-char **lexer(char *input)
-{
- char **out_lex;
-
- (void)out_lex;
- if (!input)
- return (NULL);
- return (NULL);
-}
diff --git a/src/parse/parse.c b/src/parse/parse.c
deleted file mode 100644
index ed1aa28..0000000
--- a/src/parse/parse.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
-** \file parse.c
-** \brief Parser
-*/
-
-#include "parse.h"
-
-t_ast *parse(char *input)
-{
-/* char **out_lex; */
-/* if (!(out_lex = lexer(input))) */
-/* return (NULL); */
-
- (void)input;
- return (NULL);
-}