tree-sitter/src/runtime/tree.c

9 lines
103 B
C
Raw Normal View History

2013-12-17 13:14:41 -08:00
#include "runtime.h"
TSTree TSTreeMake() {
TSTree result = {
};
return result;
}