#include <inttypes.h>
#include <stdint.h>
Go to the source code of this file.
|
#define | CT_NEW_VERSION(major, minor, patch) (((major & 0xFF) << 24) | ((minor & 0xFF) << 16) | (patch & 0xFFFF)) |
| creates a new ctu_version_t from major , minor and patch More...
|
|
#define | CT_VERSION_MAJOR(version) (((version) >> 24) & 0xFF) |
| returns the major version of version More...
|
|
#define | CT_VERSION_MINOR(version) (((version) >> 16) & 0xFF) |
| returns the minor version of version More...
|
|
#define | CT_VERSION_PATCH(version) ((version) & 0xFFFF) |
| returns the patch version of version More...
|
|
#define | PRI_VERSION PRIuFAST32 |
|