https://github.com/git/git
Raw File
Tip revision: 7092882c84269af287646294a151551c59170a64 authored by Junio C Hamano on 16 March 2008, 06:59:29 UTC
Update draft release notes for 1.5.5
Tip revision: 7092882
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