]> git.ipfire.org Git - thirdparty/git.git/blame - pack-revindex.h
Merge branch 'js/update-index-ignore-removal-for-skip-worktree'
[thirdparty/git.git] / pack-revindex.h
CommitLineData
3449f8c4
NP
1#ifndef PACK_REVINDEX_H
2#define PACK_REVINDEX_H
3
9d98bbf5
JK
4struct packed_git;
5
3449f8c4
NP
6struct revindex_entry {
7 off_t offset;
8 unsigned int nr;
9};
10
4828ce98 11int load_pack_revindex(struct packed_git *p);
9d98bbf5 12int find_revindex_position(struct packed_git *p, off_t ofs);
92e5c77c 13
3449f8c4
NP
14struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs);
15
16#endif