rng.h 272 B

123456789101112131415161718192021222324252627
  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. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. void RNG_Init(void);
  14. uint32_t GetRandomNumber(void);
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif /* RNG_H_ */