style(lib): add parameter names in declarations that are missing them

This commit is contained in:
Amaan Qureshi 2024-09-27 13:22:00 -04:00
parent 28972f916a
commit 50eaf0b6cd
7 changed files with 72 additions and 77 deletions

View file

@ -21,8 +21,8 @@ struct TSTree {
unsigned included_range_count;
};
TSTree *ts_tree_new(Subtree root, const TSLanguage *language, const TSRange *, unsigned);
TSNode ts_node_new(const TSTree *, const Subtree *, Length, TSSymbol);
TSTree *ts_tree_new(Subtree root, const TSLanguage *language, const TSRange *included_ranges, unsigned included_range_count);
TSNode ts_node_new(const TSTree *tree, const Subtree *subtree, Length position, TSSymbol alias);
#ifdef __cplusplus
}