| 233 | } |
| 234 | |
| 235 | static int obj_index_tree_node_compare(const void *a, const void *b) |
| 236 | { |
| 237 | return reftable_buf_cmp(&((const struct obj_index_tree_node *)a)->hash, |
| 238 | &((const struct obj_index_tree_node *)b)->hash); |
| 239 | } |
| 240 | |
| 241 | static int writer_index_hash(struct reftable_writer *w, struct reftable_buf *hash) |
| 242 | { |
nothing calls this directly
no test coverage detected