diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-06-13 10:34:30 +0200 |
|---|---|---|
| committer | nass1pro <nass1pro@gmail.com> | 2020-06-13 11:46:02 +0200 |
| commit | 72ec3b700e8e3142eb9e79098a357f01a6085589 (patch) | |
| tree | d866162477544c8ff96c33c57ae119b458432d17 /src/parse | |
| parent | d971bd8d16608f316396aba7a579d0b1f1af5aeb (diff) | |
| download | minishell-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.c | 16 | ||||
| -rw-r--r-- | src/parse/parse.c | 16 |
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); -} |
