mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-10-31 13:10:19 -04:00 
			
		
		
		
	git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6122 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			22 lines
		
	
	
		
			325 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			325 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef NHASH_H_
 | |
| #define NHASH_H_
 | |
| 
 | |
| #ifdef Win32
 | |
| #include "win_stdint.h"	/* defines uint32_t etc */
 | |
| #else
 | |
| #include <stddef.h>
 | |
| #include <stdint.h>	/* defines uint32_t etc */
 | |
| #endif
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| uint32_t nhash( const void * key, size_t length, uint32_t initval);
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 | |
| 
 | |
| #endif
 |