t5300-pack-object: Set up the objects for --strict tests only once.
[git/mingw.git] / pack-revindex.h
blobc3527a75655470b95ab4ba0900e9c1ad6a15a35f
1 #ifndef PACK_REVINDEX_H
2 #define PACK_REVINDEX_H
4 struct revindex_entry {
5 off_t offset;
6 unsigned int nr;
7 };
9 void init_pack_revindex(void);
10 struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs);
12 #endif