]> git.ipfire.org Git - thirdparty/git.git/blame - pack-revindex.h
Improve test for pthreads flag
[thirdparty/git.git] / pack-revindex.h
CommitLineData
3449f8c4
NP
1#ifndef PACK_REVINDEX_H
2#define PACK_REVINDEX_H
3
4struct revindex_entry {
5 off_t offset;
6 unsigned int nr;
7};
8
3449f8c4 9struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs);
4b480c67 10void discard_revindex(void);
3449f8c4
NP
11
12#endif