mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Also move colorutil.cpp/h linking build fix experiment Delete a bunch of unused CMakeLists.txt files CMakeLists.txt linking fix Don't include NativeApp.h from any headers. Android.mk buildfix Half of the UWP fix Buildfix Minor project file cleanup Buildfixes Guess what? More buildfixes!
11 lines
173 B
C++
11 lines
173 B
C++
#pragma once
|
|
|
|
#include <cstdlib>
|
|
|
|
namespace hash {
|
|
|
|
// Fairly decent function for hashing strings.
|
|
uint32_t Adler32(const uint8_t *data, size_t len);
|
|
|
|
} // namespace hash
|
|
|