aboutsummaryrefslogtreecommitdiff
path: root/src/parse/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/text.h')
-rw-r--r--src/parse/text.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/parse/text.h b/src/parse/text.h
new file mode 100644
index 00000000..cd07e0e1
--- /dev/null
+++ b/src/parse/text.h
@@ -0,0 +1,8 @@
+// Logic for parsing text literals
+#pragma once
+
+#include "../ast.h"
+#include "context.h"
+
+ast_t *parse_text(parse_ctx_t *ctx, const char *pos);
+ast_t *parse_inline_c(parse_ctx_t *ctx, const char *pos);