blob: 8d5027ad917224f689e786e9a0b4e9a387e59dfe [file] [log] [blame]
Nicolas Pitre3449f8c2008-02-28 00:25:17 -05001#ifndef PACK_REVINDEX_H
2#define PACK_REVINDEX_H
3
4struct revindex_entry {
5 off_t offset;
6 unsigned int nr;
7};
8
Nicolas Pitre3449f8c2008-02-28 00:25:17 -05009struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs);
Nicolas Pitre4b480c62008-08-22 15:45:53 -040010void discard_revindex(void);
Nicolas Pitre3449f8c2008-02-28 00:25:17 -050011
12#endif