From 3cf0d5f0bee3787a3d46126d5c0e1310e35a7cb9 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 25 Aug 2025 01:00:13 -0400 Subject: Split out text parsing logic --- src/parse/text.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/parse/text.h (limited to 'src/parse/text.h') 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); -- cgit v1.2.3