Staging
v0.5.1
https://github.com/git/git
Revision 8e1db3871c767cb17b5e0eeb7bea8d967821a055 authored by Junio C Hamano on 27 July 2008, 19:37:51 UTC, committed by Junio C Hamano on 27 July 2008, 22:07:56 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 81dc230
Raw File
Tip revision: 8e1db3871c767cb17b5e0eeb7bea8d967821a055 authored by Junio C Hamano on 27 July 2008, 19:37:51 UTC
GIT 1.6.0-rc1
Tip revision: 8e1db38
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);

#endif
back to top