tree-sitter/include/document.h
2014-01-05 15:43:00 -08:00

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