]> git.ipfire.org Git - thirdparty/git.git/blame_incremental - pack-revindex.h
Documentation: mention more worktree-specific exceptions
[thirdparty/git.git] / pack-revindex.h
... / ...
CommitLineData
1#ifndef PACK_REVINDEX_H
2#define PACK_REVINDEX_H
3
4struct packed_git;
5
6struct revindex_entry {
7 off_t offset;
8 unsigned int nr;
9};
10
11int load_pack_revindex(struct packed_git *p);
12int find_revindex_position(struct packed_git *p, off_t ofs);
13
14struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs);
15
16#endif