#8: compiles, but most tests fail.
This commit is contained in:
parent
e7ef82d23f
commit
b6958bbf65
9 changed files with 1360 additions and 16 deletions
19
src/memory/lookup3.h
Normal file
19
src/memory/lookup3.h
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/**
|
||||
* lookup3.h
|
||||
*
|
||||
* Minimal header file wrapping Bob Jenkins' lookup3.c
|
||||
*
|
||||
*
|
||||
* (c) 2019 Simon Brooke <simon@journeyman.cc>
|
||||
* Public domain.
|
||||
*/
|
||||
|
||||
#ifndef __lookup3_h
|
||||
#define __lookup3_h
|
||||
|
||||
uint32_t hashword(
|
||||
const uint32_t *k,
|
||||
size_t length,
|
||||
uint32_t initval);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue