Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: bc6100087cfac0293e6ccbea95a24223b724d072 authored by Junio C Hamano on 23 March 2008, 07:21:48 UTC
GIT 1.5.5-rc1
Tip revision: bc61000
pack-revindex.h
#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
back to top