1#pragma once 2 3#include <cstdlib> 4 5namespace hash { 6 7// Fairly decent function for hashing strings. 8uint32_t Adler32(const uint8_t *data, size_t len); 9 10} // namespace hash 11 12 13