~ubuntu-branches/ubuntu/lucid/git-core/lucid-proposed

1
2
3
4
5
6
7
8
9
10
11
12
#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);
void discard_revindex(void);

#endif