cb_version.h 455 B

123456789101112131415161718192021222324252627
  1. /*
  2. * SPDX-License-Identifier: Apache-2.0
  3. *
  4. * Change Logs:
  5. * Date Author Notes
  6. * 2023-07-26 tyx first implementation
  7. */
  8. #ifndef CB_VERSION_H_
  9. #define CB_VERSION_H_
  10. #include "cb_def.h"
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. const char *cb_version(void);
  15. unsigned cb_major_version(void);
  16. unsigned cb_minor_version(void);
  17. unsigned cb_revise_version(void);
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif