A5200DS/arm9/source/emu/hash.h
wavemotion-dave 48a44f1e16 Version 1.7
2020-12-24 12:33:26 -05:00

14 lines
358 B
C

// ----------------------------------------------------------------------------
// Hash.h
// ----------------------------------------------------------------------------
#ifndef HASH_H
#define HASH_H
#include <string.h>
typedef unsigned int uint;
typedef unsigned char byte;
extern void hash_Compute(const byte* source, uint length, byte * dest);
#endif