blob: 5b027cfe182fa1688eca31b1d2ca257e2b31e455 (
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
27
28
29
30
|
#pragma once
#include "grammar.hpp"
namespace solar {
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)) grammar_t *grammar);
}
|