Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pack-revindex.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3527a75655470b95ab4ba0900e9c1ad6a15a35f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef PACK_REVINDEX_H
#define PACK_REVINDEX_H

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

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

#endif