blob: 6ab3cab273b3fbf83daeb66614e5c21e5784beb6 (
plain)
1
2
3
4
5
6
7
8
9
|
// 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);
ast_t *parse_path(parse_ctx_t *ctx, const char *pos);
|