2014-07-30 23:40:02 -07:00
|
|
|
#ifndef RUNTIME_LEXER_H_
|
|
|
|
|
#define RUNTIME_LEXER_H_
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "tree_sitter/parser.h"
|
|
|
|
|
|
2016-02-04 11:15:46 -08:00
|
|
|
void ts_lexer_init(TSLexer *);
|
2015-12-03 10:00:39 -08:00
|
|
|
void ts_lexer_set_input(TSLexer *, TSInput);
|
2015-12-04 20:20:29 -08:00
|
|
|
void ts_lexer_reset(TSLexer *, TSLength);
|
2014-07-30 23:40:02 -07:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif // RUNTIME_LEXER_H_
|