mirror of
https://github.com/git/git.git
synced 2024-11-01 06:47:52 +01:00
10 lines
220 B
C
10 lines
220 B
C
|
#ifndef SHA1_LOOKUP_H
|
||
|
#define SHA1_LOOKUP_H
|
||
|
|
||
|
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
|