blob: cd07e0e1cba49f6d27a79f122e47d2aada280496 (
plain)
1
2
3
4
5
6
7
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);
|