Use 2-space indent in c files

This commit is contained in:
Max Brunsfeld 2014-07-20 20:27:33 -07:00
parent af5a118000
commit df359bc01f
10 changed files with 614 additions and 611 deletions

View file

@ -5,12 +5,12 @@
#include "runtime/tree.h"
struct TSNode {
size_t ref_count;
size_t start_position;
size_t index;
const TSTree *content;
struct TSNode *parent;
const char **names;
size_t ref_count;
size_t start_position;
size_t index;
const TSTree *content;
struct TSNode *parent;
const char **names;
};
TSNode * ts_node_make(const TSTree *tree, TSNode *parent, size_t index, size_t start_position, const char **names);