21 lines
248 B
C
21 lines
248 B
C
#ifndef __tree_sitter_document_h__
|
|
#define __tree_sitter_document_h__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
|
|
typedef size_t TSSymbol;
|
|
|
|
typedef struct {
|
|
} TSTree;
|
|
|
|
TSTree TSTreeMake();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|