diff options
Diffstat (limited to 'third_party/git/pack-revindex.h')
-rw-r--r-- | third_party/git/pack-revindex.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/git/pack-revindex.h b/third_party/git/pack-revindex.h new file mode 100644 index 000000000000..848331d5d67b --- /dev/null +++ b/third_party/git/pack-revindex.h @@ -0,0 +1,16 @@ +#ifndef PACK_REVINDEX_H +#define PACK_REVINDEX_H + +struct packed_git; + +struct revindex_entry { + off_t offset; + unsigned int nr; +}; + +int load_pack_revindex(struct packed_git *p); +int find_revindex_position(struct packed_git *p, off_t ofs); + +struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs); + +#endif |