mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 00:04:49 +02:00
16 lines
249 B
C++
16 lines
249 B
C++
#ifndef _UTIL_HASH_HASH_H
|
|
#define _UTIL_HASH_HASH_H
|
|
|
|
#include <cstdlib>
|
|
|
|
#include "base/basictypes.h"
|
|
|
|
namespace hash {
|
|
|
|
// Fairly decent function for hashing strings.
|
|
uint32_t Adler32(const uint8_t *data, size_t len);
|
|
|
|
} // namespace hash
|
|
|
|
#endif
|