summaryrefslogtreecommitdiff
path: root/src/lookup3.h
blob: 50c1cf4d182502bf53a428749bfa255b67f1ce65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef __LOOKUP3_H
#define __LOOKUP3_H

#if defined(__GNUC__) || defined(__sun)

#include <stdint.h>

#else

#ifdef QXLDD
#include <windef.h>
#include "os_dep.h"
#else
#include <stddef.h>
#include <basetsd.h>
#endif

typedef UINT32 uint32_t;
typedef UINT16 uint16_t;
typedef UINT8 uint8_t;

#endif

uint32_t hashlittle( const void *key, size_t length, uint32_t initval);

#endif