e30c654b |
1 | #ifndef __LEGIC_PRNG_H |
2 | #define __LEGIC_PRNG_H |
5e174a51 |
3 | |
4 | #include <stdint.h> |
8e220a91 |
5 | extern void legic_prng_init(uint8_t init); |
6 | extern void legic_prng_forward(int count); |
7 | extern uint8_t legic_prng_get_bit(); |
5e174a51 |
8 | |
9 | #endif |
10 | |