diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/parse/lexer.c | 10 | ||||
| -rw-r--r-- | src/parse/parse.c | 11 |
2 files changed, 21 insertions, 0 deletions
diff --git a/src/parse/lexer.c b/src/parse/lexer.c new file mode 100644 index 0000000..612e911 --- /dev/null +++ b/src/parse/lexer.c @@ -0,0 +1,10 @@ + + + +char **ms_lexer(char *input) +{ + char **out_lex; + if (!input) + return (NULL); + +} diff --git a/src/parse/parse.c b/src/parse/parse.c new file mode 100644 index 0000000..de18d7c --- /dev/null +++ b/src/parse/parse.c @@ -0,0 +1,11 @@ +#include "minishell.h" + +t_parsing *ms_parse(char *input) +{ + char **out_lex; + if (!(out_lex = ms_lexer(input))) + return (NULL); + + //(void)input; + return (NULL); +} |
