| 123456789101112131415161718192021222324252627 |
- /**
- * \file version.h
- *
- */
- #ifndef __AIR_CRYPT_VERSION_H
- #define __AIR_CRYPT_VERSION_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "stdint.h"
- /**
- * @method air_get_version
- * @brief Get the version number.
- * @param void
- * @retval The constructed version number in the format:MMNNPP00 (Major, Minor, Patch).
- */
- uint32_t air_crypt_version(void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* version.h */
|