1 2 3 4 5 6 7 8 9
#ifndef RANDOM_H_ #define RANDOM_H_ #include <stdint.h> void random_init(void); uint32_t random_get(void); #endif // RANDOM_H_