Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 3c3e0b3c41f4c975828cf51d661614e45bf80dc0 authored by Junio C Hamano on 26 May 2011, 16:45:29 UTC
Git 1.7.5.3
Tip revision: 3c3e0b3
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