Revision cb198b3b67feb2c0a6f22199ec14fa48d18ac1ce authored by Junio C Hamano on 15 December 2010, 19:38:19 UTC, committed by Junio C Hamano on 15 December 2010, 19:38:19 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2 parent s cbcab75 + abf411e
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