https://github.com/git/git
Revision 474294963eb968da7a06650a65a4d17b4bde3ad2 authored by Junio C Hamano on 28 December 2011, 19:32:35 UTC, committed by Junio C Hamano on 28 December 2011, 19:32:35 UTC
* ci/stripspace-docs:
  Update documentation for stripspace
2 parent s 9ddb7ea + 497215d
Raw File
Tip revision: 474294963eb968da7a06650a65a4d17b4bde3ad2 authored by Junio C Hamano on 28 December 2011, 19:32:35 UTC
Merge branch 'ci/stripspace-docs' into maint
Tip revision: 4742949
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