hash.h 435 B

1234567891011121314151617
  1. /* hash.h Routines to calculate a CRC32 hash value
  2. *
  3. * These routines donated to the NASM effort by Graeme Defty.
  4. *
  5. * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
  6. * Julian Hall. All rights reserved. The software is
  7. * redistributable under the license given in the file "LICENSE"
  8. * distributed in the NASM archive.
  9. */
  10. #ifndef RDOFF_HASH_H
  11. #define RDOFF_HASH_H 1
  12. uint32_t hash(const char *name);
  13. #endif