https://github.com/git/git
Raw File
Tip revision: 8fd2cfa7accd6b8f877014bf3e4bf8547b8e0d2a authored by Stephen Boyd on 07 October 2009, 08:48:51 UTC
completion: add dirstat and friends to diff options
Tip revision: 8fd2cfa
pack-revindex.h
#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
back to top