6 * hash - routines for hashing bytes
8 * When creating a hash table it's important to have a hash function
9 * which mixes well and is fast. This package supplies such functions.
11 * The hash functions come in two flavors: the normal ones and the
12 * stable ones. The normal ones can vary from machine-to-machine and
13 * may change if we find better or faster hash algorithms in future.
14 * The stable ones will always give the same results on any computer,
15 * and on any version of this package.
17 * License: CC0 (Public domain)
18 * Maintainer: Rusty Russell <rusty@rustcorp.com.au>
19 * Author: Bob Jenkins <bob_jenkins@burtleburtle.net>
21 int main(int argc, char *argv[])
26 if (strcmp(argv[1], "depends") == 0) {
27 printf("ccan/build_assert\n");