aboutsummaryrefslogtreecommitdiff
path: root/include/parser.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-01-14 07:54:59 +0100
committerdec05eba <dec05eba@protonmail.com>2020-01-14 07:54:59 +0100
commitf5fc07765303055922e1dfcc35f2f2f620c1e66b (patch)
tree99c82f033e81948f76d9367531d51a0955cb047f /include/parser.h
parente27bd78c8211532bf0d39d87d2051222f7e86e26 (diff)
add parser...
Diffstat (limited to 'include/parser.h')
-rw-r--r--include/parser.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/parser.h b/include/parser.h
new file mode 100644
index 0000000..3523127
--- /dev/null
+++ b/include/parser.h
@@ -0,0 +1,8 @@
+#ifndef TSL_PARSER_H
+#define TSL_PARSER_H
+
+#include "tokenizer.h"
+
+int tsl_parse(const char *code, size_t code_size);
+
+#endif /* TSL_PARSER_H */