13 lines
141 B
C
13 lines
141 B
C
#ifndef RNG_H
|
|
#define RNG_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void rng_init();
|
|
|
|
uint32_t rng_uint32();
|
|
float rng_canon();
|
|
float rng_plusminus();
|
|
|
|
#endif
|