Revision 8279ed033f703d4115bee620dccd32a9ec94d9aa authored by Junio C Hamano on 22 January 2018, 05:14:25 UTC, committed by Junio C Hamano on 22 January 2018, 05:14:25 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent ea7b5de
Raw File
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);
#endif
back to top