1
0
mirror of https://github.com/git/git.git synced 2024-10-03 19:51:31 +02:00
git/pack-revindex.h

12 lines
194 B
C
Raw Permalink Normal View History

#ifndef PACK_REVINDEX_H
#define PACK_REVINDEX_H
struct revindex_entry {
off_t offset;
unsigned int nr;
};
struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs);
#endif