mirror of
https://github.com/CompeyDev/my-nvim-setup.git
synced 2025-04-05 15:20:54 +01:00
16 lines
No EOL
222 B
C
16 lines
No EOL
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_
|