diff options
Diffstat (limited to 'src/parse/lexer.c')
| -rw-r--r-- | src/parse/lexer.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/parse/lexer.c b/src/parse/lexer.c new file mode 100644 index 0000000..2aa8a6f --- /dev/null +++ b/src/parse/lexer.c @@ -0,0 +1,26 @@ +/* +** \file lexer.c +** \brief Lexer +*/ + +#include "minishell.h" + +/* static char **lex_len(char *input) */ +/* { */ +/* int i; */ +/* */ +/* i = 0; */ +/* while(input[i] != '\0') */ +/* { */ +/* lex_comp_cmd(input); */ +/* i++; */ +/* } */ +/* } */ + +/* char **lexer(char *input) */ +/* { */ +/* if (!input) */ +/* return (NULL); */ +/* lex_len(input); */ +/* return (NULL); */ +/* } */ |
