Staging
v0.5.1
https://github.com/git/git
Revision 621f1b4bcf40f1469fc59202248df35619e33c82 authored by Junio C Hamano on 07 February 2009, 19:06:34 UTC, committed by Junio C Hamano on 07 February 2009, 19:18:40 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent c19923a
Raw File
Tip revision: 621f1b4bcf40f1469fc59202248df35619e33c82 authored by Junio C Hamano on 07 February 2009, 19:06:34 UTC
GIT 1.6.2-rc0
Tip revision: 621f1b4
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