Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hrydgard
GitHub Repository: hrydgard/ppsspp
Path: blob/master/Common/Data/Hash/Hash.h
3189 views
1
#pragma once
2
3
#include <cstdlib>
4
5
namespace hash {
6
7
// Fairly decent function for hashing strings.
8
uint32_t Adler32(const uint8_t *data, size_t len);
9
10
} // namespace hash
11
12
13