aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authornass1pro <nass1pro@gmail.com>2020-03-24 18:30:12 +0100
committernass1pro <nass1pro@gmail.com>2020-03-24 18:30:12 +0100
commit19a305ae711f9d552e98f74db7f1c264fe99dbb2 (patch)
tree9fcf1f271c2660a796c2624c7b7828174e9a8cc2 /src
parent61493998e35bd6adf5a02876cff6095a6e69e6c9 (diff)
downloadminishell-19a305ae711f9d552e98f74db7f1c264fe99dbb2.tar.gz
minishell-19a305ae711f9d552e98f74db7f1c264fe99dbb2.tar.bz2
minishell-19a305ae711f9d552e98f74db7f1c264fe99dbb2.zip
parser_lexer
Diffstat (limited to 'src')
-rw-r--r--src/parse/lexer.c10
-rw-r--r--src/parse/parse.c11
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);
+}