mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-28 20:32:28 -04:00
23 lines
384 B
C
23 lines
384 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, uint64_t length, uint32_t initval);
|
||
|
//int nhash(const char *key, int length, int initval);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|