]> git.ozlabs.org Git - ccan/blob - ccan/hash/_info
memmem, bytestring: Fix includes in _info
[ccan] / ccan / hash / _info
1 #include "config.h"
2 #include <string.h>
3 #include <stdio.h>
4
5 /**
6  * hash - routines for hashing bytes
7  *
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.
10  *
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.
16  *
17  * License: CC0 (Public domain)
18  * Maintainer: Rusty Russell <rusty@rustcorp.com.au>
19  * Author: Bob Jenkins <bob_jenkins@burtleburtle.net>
20  */
21 int main(int argc, char *argv[])
22 {
23         if (argc != 2)
24                 return 1;
25
26         if (strcmp(argv[1], "depends") == 0) {
27                 printf("ccan/build_assert\n");
28                 return 0;
29         }
30
31         return 1;
32 }