17 lines
238 B
C
17 lines
238 B
C
|
#ifndef TREE_SITTER_YAML_H_
|
||
|
#define TREE_SITTER_YAML_H_
|
||
|
|
||
|
typedef struct TSLanguage TSLanguage;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
const TSLanguage *tree_sitter_yaml(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // TREE_SITTER_YAML_H_
|