summaryrefslogtreecommitdiffstats
path: root/src/parse.hpp
blob: c9fa9ced916b25896b58a38a98be920cf20aa5fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#pragma once


#include "grammar.hpp"


typedef enum parse_token {
	TOK_BLOCK = 256,
	TOK_CHAR = 257,
	TOK_SQBLOCK = 258,
	TOK_STRING = 259,
	TOK_SYMBOL = 260,
	TOK_SYMBOL_UC = 261,
} parse_token_t;

typedef struct parse_token_value {
	unsigned char c;
	std::string *str;
} parse_token_value_t;

typedef struct parse_context parse_context_t;

parse_context_t * parse_alloc(void *(*alloc_func)(size_t));
void parse_free(parse_context_t *parser, void (*free_func)(void *));

int parse_push(parse_context_t *parser, int token, const parse_token_value_t *value, __attribute__((unused)) solar::grammar_t *grammar);