Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: d32eb83c1db7d0a8bb54fe743c6d1dd674d372c5 authored by Junio C Hamano on 22 March 2018, 21:24:45 UTC
Git 2.16.3
Tip revision: d32eb83
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