Revision ccef6048cd697063967e5e02937911fd8125b364 authored by Junio C Hamano on 24 August 2011, 19:16:58 UTC, committed by Junio C Hamano on 24 August 2011, 19:16:58 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent c43a1be
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