Files
ppsspp/Common/Data/Hash/Hash.h

12 lines
173 B
C
Raw Permalink Normal View History

2020-09-29 12:53:18 +02:00
#pragma once
2012-03-24 23:39:19 +01:00
#include <cstdlib>
2012-03-24 23:39:19 +01:00
namespace hash {
// Fairly decent function for hashing strings.
uint32_t Adler32(const uint8_t *data, size_t len);
2012-03-24 23:39:19 +01:00
} // namespace hash