]> git.ozlabs.org Git - ccan/blob - ccan/hash/_info.c
merge
[ccan] / ccan / hash / _info.c
1 #include <string.h>
2
3 /**
4  * hash - routines for hashing bytes
5  *
6  * When creating a hash table it's important to have a hash function
7  * which mixes well and is fast.  This package supplies such functions.
8  *
9  * The hash functions come in two flavors: the normal ones and the
10  * stable ones.  The normal ones can vary from machine-to-machine and
11  * may change if we find better or faster hash algorithms in future.
12  * The stable ones will always give the same results on any computer,
13  * and on any version of this package.
14  */
15 int main(int argc, char *argv[])
16 {
17         if (argc != 2)
18                 return 1;
19
20         if (strcmp(argv[1], "depends") == 0) {
21                 return 0;
22         }
23
24         return 1;
25 }