Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sha1-lookup.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf5314f402ce78f0d5ab2bd72ee7f334b6394e04 (plain)
1
2
3
4
5
6
7
8
9
10
#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