Staging
v0.5.1
https://github.com/git/git
Revision 0628636d0c21324ae0f11be591611c6b1e55705f authored by Johannes Schindelin on 12 February 2021, 14:50:15 UTC, committed by Johannes Schindelin on 12 February 2021, 14:50:15 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent d7bdabe
Raw File
Tip revision: 0628636d0c21324ae0f11be591611c6b1e55705f authored by Johannes Schindelin on 12 February 2021, 14:50:15 UTC
Git 2.29.3
Tip revision: 0628636
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