Staging
v0.5.1
Revision 79fcbf7e703ca5805ebd46b2c7e09d0703f1c1ff authored by Junio C Hamano on 17 January 2014, 20:30:14 UTC, committed by Junio C Hamano on 17 January 2014, 20:30:14 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent d98c916
Raw File
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