NASM 2.00rc2
[nasm.git] / rdoff / hash.h
blob949bc72fbc5c3708a316765bb4980438e6656068
1 /* hash.h Routines to calculate a CRC32 hash value
3 * These routines donated to the NASM effort by Graeme Defty.
5 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
6 * Julian Hall. All rights reserved. The software is
7 * redistributable under the licence given in the file "Licence"
8 * distributed in the NASM archive.
9 */
11 #ifndef RDOFF_HASH_H
12 #define RDOFF_HASH_H 1
14 #include <inttypes.h>
16 uint32_t hash(const char *name);
18 #endif