air_crypt_version.h 419 B

123456789101112131415161718192021222324252627
  1. /**
  2. * \file version.h
  3. *
  4. */
  5. #ifndef __AIR_CRYPT_VERSION_H
  6. #define __AIR_CRYPT_VERSION_H
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. #include "stdint.h"
  11. /**
  12. * @method air_get_version
  13. * @brief Get the version number.
  14. * @param void
  15. * @retval The constructed version number in the format:MMNNPP00 (Major, Minor, Patch).
  16. */
  17. uint32_t air_crypt_version(void);
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif /* version.h */