mirror of
https://codeberg.org/ProgramSnail/tree-sitter-lang.git
synced 2025-12-06 06:38:51 +00:00
16 lines
238 B
C
Generated
16 lines
238 B
C
Generated
#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_
|