mirror of
				https://github.com/netwide-assembler/nasm.git
				synced 2025-10-10 00:25:06 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			457 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			457 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* hash.h     Routines to calculate a CRC32 hash value
 | |
|  *
 | |
|  *   These routines donated to the NASM effort by Graeme Defty.
 | |
|  *
 | |
|  * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
 | |
|  * Julian Hall. All rights reserved. The software is
 | |
|  * redistributable under the license given in the file "LICENSE"
 | |
|  * distributed in the NASM archive.
 | |
|  */
 | |
| 
 | |
| #ifndef RDOFF_HASH_H
 | |
| #define RDOFF_HASH_H 1
 | |
| 
 | |
| #include <inttypes.h>
 | |
| 
 | |
| uint32_t hash(const char *name);
 | |
| 
 | |
| #endif
 |