Revision 2f0b5fa4591faa293f06f5a1e58e22f713973861 authored by Junio C Hamano on 20 May 2011, 04:02:14 UTC, committed by Junio C Hamano on 20 May 2011, 04:02:14 UTC
* jc/maint-1.7.4-pathspec-stdin-and-cmdline:
2 parent s ac39c5f + 1b6d0ae
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