blob: 3249a81b3d664afc89c98e6d9dd6b512092a82f9 (
plain)
1
2
3
4
5
6
7
8
9
|
#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
|