aboutsummaryrefslogtreecommitdiff
path: root/src/parse/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/parse.c')
-rw-r--r--src/parse/parse.c11
1 files changed, 11 insertions, 0 deletions
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);
+}