Revision 247f9d23da8cfd255533433ad2aa07d172afac0b authored by Junio C Hamano on 04 January 2012, 19:21:42 UTC, committed by Junio C Hamano on 04 January 2012, 19:21:42 UTC
* maint:
  t5550: repack everything into one file
  Catch invalid --depth option passed to clone or fetch
2 parent s 4570aeb + 1327d83
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