8 lines
114 B
C
8 lines
114 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <stddef.h>
|
||
|
|
|
||
|
|
void rand_init(void);
|
||
|
|
void rand_cleanup(void);
|
||
|
|
void rand_fill(void *, size_t);
|