Move StringInput into its own file
This commit is contained in:
parent
41d26aaceb
commit
03a5a97992
4 changed files with 55 additions and 36 deletions
16
src/runtime/string_input.h
Normal file
16
src/runtime/string_input.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#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 *);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // RUNTIME_STRING_INPUT_H_
|
||||
Loading…
Add table
Add a link
Reference in a new issue