Revision b893e88191c61bf44ae83588d3a01e543bcb85c9 authored by Junio C Hamano on 28 November 2012, 21:42:30 UTC, committed by Junio C Hamano on 28 November 2012, 21:42:30 UTC
* mm/status-push-pull-advise:
  status: add advice on how to push/pull to tracking branch
2 parent s 682098b + c190ced
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