_info 690 B

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