| 24 | int quiet_on_missing); |
| 25 | #define parse_tree(t) repo_parse_tree(the_repository, t) |
| 26 | static inline int repo_parse_tree(struct repository *r, struct tree *item) |
| 27 | { |
| 28 | return repo_parse_tree_gently(r, item, 0); |
| 29 | } |
| 30 | void free_tree_buffer(struct tree *tree); |
| 31 | |
| 32 | /* Parses and returns the tree in the given ent, chasing tags and commits. */ |
no test coverage detected