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: 36a514a6cf600e7e77794e50998a9d160e30c8e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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);

#endif