Post Scarcity
A prototype for a post scarcity programming environment
Loading...
Searching...
No Matches
lookup3.h
Go to the documentation of this file.
1/**
2 * lookup3.h
3 *
4 * Minimal header file wrapping Bob Jenkins' lookup3.c
5 *
6 *
7 * (c) 2019 Simon Brooke <simon@journeyman.cc>
8 * Public domain.
9 */
10
11#ifndef __lookup3_h
12#define __lookup3_h
13
14uint32_t hashword( const uint32_t * k, size_t length, uint32_t initval );
15
16#endif
uint32_t hashword(const uint32_t *k, size_t length, uint32_t initval)
lookup3.h
Definition lookup3.c:173