mirror of https://github.com/mgba-emu/mgba.git
9 lines
123 B
C
9 lines
123 B
C
|
#ifndef HASH_H
|
||
|
#define HASH_H
|
||
|
|
||
|
#include "util/common.h"
|
||
|
|
||
|
uint32_t hash32(const void* key, int len, uint32_t seed);
|
||
|
|
||
|
#endif
|