| 202 | } |
| 203 | |
| 204 | static void write_rev_index_positions(struct hashfile *f, |
| 205 | uint32_t *pack_order, |
| 206 | uint32_t nr_objects) |
| 207 | { |
| 208 | uint32_t i; |
| 209 | for (i = 0; i < nr_objects; i++) |
| 210 | hashwrite_be32(f, pack_order[i]); |
| 211 | } |
| 212 | |
| 213 | static void write_rev_trailer(const struct git_hash_algo *hash_algo, |
| 214 | struct hashfile *f, const unsigned char *hash) |
no test coverage detected