Revision 3fc7fc1c5f05602be0ad9d81ba3797dfc97f8efd authored by Junio C Hamano on 14 December 2020, 18:21:38 UTC, committed by Junio C Hamano on 14 December 2020, 18:21:38 UTC
Test update.

* js/t5526-with-no-particular-primary-branch-name:
  t5526: drop the prereq expecting the default branch name `main`
  t5526: avoid depending on a specific default branch name
2 parent s 043bfc6 + 71f4a93
Raw File
pack-revindex.h
#ifndef PACK_REVINDEX_H
#define PACK_REVINDEX_H

struct packed_git;

struct revindex_entry {
	off_t offset;
	unsigned int nr;
};

int load_pack_revindex(struct packed_git *p);
int find_revindex_position(struct packed_git *p, off_t ofs);

struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs);

#endif
back to top