Common macros used throughout the project.
More...
Common macros used throughout the project.
◆ CT_ALIGN_POW2
#define CT_ALIGN_POW2 |
( |
|
X, |
|
|
|
ALIGN |
|
) |
| (((X) + (ALIGN)-1) & ~((ALIGN)-1)) |
aligns X
to the next power of 2 of ALIGN
Definition at line 42 of file macros.h.
◆ CT_ARRAY_LEN
#define CT_ARRAY_LEN |
( |
|
arr | ) |
(sizeof(arr) / sizeof(*arr)) |
returns the length of an array
Definition at line 63 of file macros.h.
◆ CT_CONCAT
#define CT_CONCAT |
( |
|
a, |
|
|
|
b |
|
) |
| a##b |
concatenates two macros
Definition at line 55 of file macros.h.
◆ CT_DEPRECATED
#define CT_DEPRECATED |
( |
|
msg | ) |
|
mark a function as deprecated
- Parameters
-
msg | the message to display when the function is used |
◆ CT_INNER_STR
#define CT_INNER_STR |
( |
|
x | ) |
#x |
◆ CT_MAX
#define CT_MAX |
( |
|
L, |
|
|
|
R |
|
) |
| ((L) > (R) ? (L) : (R)) |
returns the maximum of lhs and rhs
Definition at line 34 of file macros.h.
◆ CT_MIN
#define CT_MIN |
( |
|
L, |
|
|
|
R |
|
) |
| ((L) < (R) ? (L) : (R)) |
returns the minimum of lhs and rhs
Definition at line 38 of file macros.h.
◆ CT_STATIC_ASSERT
#define CT_STATIC_ASSERT |
( |
|
expr, |
|
|
|
msg |
|
) |
| _Static_assert(expr, msg) |
◆ CT_STR
converts a macro to a string
Definition at line 51 of file macros.h.
◆ CT_UNUSED
#define CT_UNUSED |
( |
|
x | ) |
((void)(x)) |
mark a variable as unused
Definition at line 46 of file macros.h.
◆ CT_VERSION_STR
#define CT_VERSION_STR CT_STR(CTU_VERSION_MAJOR) "." CT_STR(CTU_VERSION_MINOR) "." CT_STR(CTU_VERSION_PATCH) |
the version of the project as a string
Definition at line 59 of file macros.h.