Nicolas Pitre | 3449f8c | 2008-02-28 00:25:17 -0500 | [diff] [blame] | 1 | #ifndef PACK_REVINDEX_H |
2 | #define PACK_REVINDEX_H | ||||
3 | |||||
4 | struct revindex_entry { | ||||
5 | off_t offset; | ||||
6 | unsigned int nr; | ||||
7 | }; | ||||
8 | |||||
Nicolas Pitre | 3449f8c | 2008-02-28 00:25:17 -0500 | [diff] [blame] | 9 | struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs); |
Nicolas Pitre | 4b480c6 | 2008-08-22 15:45:53 -0400 | [diff] [blame] | 10 | void discard_revindex(void); |
Nicolas Pitre | 3449f8c | 2008-02-28 00:25:17 -0500 | [diff] [blame] | 11 | |
12 | #endif |