_info 875 B

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