mirror of
https://codeberg.org/ProgramSnail/tree-sitter-lang.git
synced 2025-12-06 14:48:48 +00:00
17 lines
238 B
C
17 lines
238 B
C
|
|
#ifndef TREE_SITTER_LANG_H_
|
||
|
|
#define TREE_SITTER_LANG_H_
|
||
|
|
|
||
|
|
typedef struct TSLanguage TSLanguage;
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
const TSLanguage *tree_sitter_lang(void);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif // TREE_SITTER_LANG_H_
|