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