1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-06 18:06:13 +02:00
git/pack-revindex.h
Nicolas Pitre 1f5c74f6cf call init_pack_revindex() lazily
This makes life much easier for next patch, as well as being more efficient
when the revindex is actually not used.

Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-06-23 21:25:20 -07:00

12 lines
194 B
C

#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