1/* @title: PRNG */
2#pragma once
3#include <stdint.h>
4void prng_seed(uint64_t seed);
5uint64_t prng_next();
6