Revision efd02e92c9961063bae63da7f7446868a38f14ce authored by Junio C Hamano on 31 May 2011, 19:08:48 UTC, committed by Junio C Hamano on 31 May 2011, 19:08:48 UTC
* jl/read-tree-m-dry-run:
  Teach read-tree the -n|--dry-run option
  unpack-trees: add the dry_run flag to unpack_trees_options
2 parent s 2951df7 + ea5070c
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