#pragma once #include "types.hpp" namespace sibs { // Source: https://stackoverflow.com/a/11414104 (public license) static usize fnvHash(const unsigned char *key, int len) { usize h = 2166136261ULL; for (int i = 0; i < len; i++) h = (h * 16777619ULL) ^ key[i]; return h; } }