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