]> git.ozlabs.org Git - ccan/blob - ccan/hash/_info
New junkcode.
[ccan] / ccan / hash / _info
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  * Licence: Public Domain
16  */
17 int main(int argc, char *argv[])
18 {
19         if (argc != 2)
20                 return 1;
21
22         if (strcmp(argv[1], "depends") == 0) {
23                 return 0;
24         }
25
26         return 1;
27 }