rng.h 195 B

12345678910111213141516
  1. /*
  2. * rng.h
  3. *
  4. * Created on: 26.01.2016
  5. * Author: pavel
  6. */
  7. #include <stdint.h>
  8. #ifndef RNG_H_
  9. #define RNG_H_
  10. void RNG_Init(void);
  11. uint32_t GetRandomNumber(void);
  12. #endif /* RNG_H_ */