Revision 360f852d249f365009b63cab70b50d6f5b5c65e7 authored by Junio C Hamano on 08 April 2014, 19:07:06 UTC, committed by Junio C Hamano on 08 April 2014, 19:07:06 UTC
* mm/status-porcelain-format-i18n-fix:
  status: disable translation when --porcelain is used
2 parent s 86b4c16 + 7a76c28
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