1 // Logic for parsing text literals 2 #pragma once 3 4 #include <stdbool.h> 5 6 #include "../ast.h" 7 #include "context.h" 8 9 ast_t *parse_text(parse_ctx_t *ctx, const char *pos, bool allow_interps); 10 ast_t *parse_inline_c(parse_ctx_t *ctx, const char *pos);