https://github.com/git/git
Raw File
Tip revision: 8c67c392e1620fc3b749aa9e0b8da13bd84226f8 authored by Junio C Hamano on 19 August 2010, 23:03:18 UTC
Git 1.7.2.2
Tip revision: 8c67c39
sha1-lookup.h
#ifndef SHA1_LOOKUP_H
#define SHA1_LOOKUP_H

typedef const unsigned char *sha1_access_fn(size_t index, void *table);

extern int sha1_pos(const unsigned char *sha1,
		    void *table,
		    size_t nr,
		    sha1_access_fn fn);

extern int sha1_entry_pos(const void *table,
			  size_t elem_size,
			  size_t key_offset,
			  unsigned lo, unsigned hi, unsigned nr,
			  const unsigned char *key);
#endif
back to top