CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Common/Data/Hash/Hash.h
Views: 1401
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