pack-revindex.hon commit diff- and log- family: handle "git cmd -h" early (5a88f97)
   1#ifndef PACK_REVINDEX_H
   2#define PACK_REVINDEX_H
   3
   4struct packed_git;
   5
   6struct revindex_entry {
   7        off_t offset;
   8        unsigned int nr;
   9};
  10
  11void load_pack_revindex(struct packed_git *p);
  12int find_revindex_position(struct packed_git *p, off_t ofs);
  13
  14struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs);
  15
  16#endif