2014-08-01 12:43:14 -07:00
|
|
|
#ifndef RUNTIME_STRING_INPUT_H_
|
|
|
|
|
#define RUNTIME_STRING_INPUT_H_
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "tree_sitter/runtime.h"
|
|
|
|
|
|
|
|
|
|
TSInput ts_string_input_make(const char *);
|
2017-02-10 09:10:06 -05:00
|
|
|
TSInput ts_string_input_make_with_length(const char *, uint32_t);
|
2014-08-01 12:43:14 -07:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif // RUNTIME_STRING_INPUT_H_
|