Staging
v0.5.1
Revision d9b9784f572a71b2f4ea0f8772b0d586ea0f848f authored by Junio C Hamano on 21 August 2009, 19:02:25 UTC, committed by Junio C Hamano on 22 August 2009, 03:16:10 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent f47af92
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