all repos — mgba @ 5ace8e5023df6e7ab9e1e9a7e7ec548cae62f3df

mGBA Game Boy Advance Emulator

src/util/hash.h (view raw)

1#ifndef HASH_H
2#define HASH_H
3
4#include "util/common.h"
5
6uint32_t hash32(const void* key, int len, uint32_t seed);
7
8#endif