mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
6 lines
126 B
C
6 lines
126 B
C
#ifndef __RNG_H__
|
|
#define __RNG_H__
|
|
void rng_init();
|
|
uint32_t rng_randint(uint32_t min, uint32_t max);
|
|
#endif /* __RNG_H__ */
|