2016-03-03 23:02:19 -08:00
|
|
|
#pragma once
|
|
|
|
|
|
2016-03-05 15:27:11 -08:00
|
|
|
#include <stdbool.h>
|
2016-03-03 23:02:19 -08:00
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
|
|
void rand_init(void);
|
|
|
|
|
void rand_cleanup(void);
|
|
|
|
|
void rand_fill(void *, size_t);
|
2016-03-05 15:27:11 -08:00
|
|
|
bool rand_yes_no(uint64_t);
|