mirror of
https://github.com/elladunbar/tree-sitter-zanscript.git
synced 2025-11-05 15:19:55 -06:00
16 lines
294 B
C
Generated
16 lines
294 B
C
Generated
#ifndef TREE_SITTER_YOUR_LANGUAGE_NAME_H_
|
|
#define TREE_SITTER_YOUR_LANGUAGE_NAME_H_
|
|
|
|
typedef struct TSLanguage TSLanguage;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
const TSLanguage *tree_sitter_YOUR_LANGUAGE_NAME(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // TREE_SITTER_YOUR_LANGUAGE_NAME_H_
|