Staging
v0.5.1
https://github.com/git/git
Revision 3d5ae435275e60be3ebd7302c1d2cf8ed6f0b8ad authored by Junio C Hamano on 20 May 2011, 03:30:44 UTC, committed by Junio C Hamano on 20 May 2011, 03:30:44 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 36268b7
Raw File
Tip revision: 3d5ae435275e60be3ebd7302c1d2cf8ed6f0b8ad authored by Junio C Hamano on 20 May 2011, 03:30:44 UTC
Git 1.7.5.2
Tip revision: 3d5ae43
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