tree-sitter/src/runtime/lexer.h
2014-10-05 16:56:50 -07:00

17 lines
249 B
C

#ifndef RUNTIME_LEXER_H_
#define RUNTIME_LEXER_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "tree_sitter/parser.h"
TSLexer ts_lexer_make();
void ts_lexer_reset(TSLexer *, TSLength);
#ifdef __cplusplus
}
#endif
#endif // RUNTIME_LEXER_H_