16 lines
222 B
C
16 lines
222 B
C
|
#ifndef TREE_SITTER_C_H_
|
||
|
#define TREE_SITTER_C_H_
|
||
|
|
||
|
typedef struct TSLanguage TSLanguage;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern TSLanguage *tree_sitter_c();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // TREE_SITTER_C_H_
|