casc 0.1.5

A cross-platform CLI tool for Blizzard CASC archives.
#ifndef __LOOKUP3_H__
#define __LOOKUP3_H__

#ifdef WIN32
typedef unsigned char  uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int   uint32_t;
#else
#include <stdint.h>     /* defines uint32_t etc */
#endif

#ifdef __cplusplus
extern "C"
{
#endif

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

#ifdef __cplusplus
}
#endif

#endif  // __LOOKUP3_H__