Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: abf411e28d9df669b0e690578a1eb95c0bd29847 authored by Junio C Hamano on 15 December 2010, 19:32:57 UTC
Git 1.6.6.3
Tip revision: abf411e
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