Staging
v0.5.1
Revision ab0964d951e4ea88f9ea2cbb88388c1bcd4ae911 authored by Junio C Hamano on 20 December 2009, 20:15:02 UTC, committed by Junio C Hamano on 20 December 2009, 20:15:02 UTC
Hopefully the last rc before the final one.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent b6b9f83
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