|
void | mxc_assert (const char *expr, const char *file, int line) |
|
Assertion checks for debugging.
◆ MXC_ASSERT
#define MXC_ASSERT |
( |
|
expr | ) |
|
- Note
- Macro that checks the expression for true and generates an assertion if false. The symbol
MXC_ASSERT_ENABLE
must be defined to use this macro.
◆ mxc_assert()
void mxc_assert |
( |
const char * |
expr, |
|
|
const char * |
file, |
|
|
int |
line |
|
) |
| |
Assert an error when the given expression fails during debugging.
- Parameters
-
expr | String with the expression that failed the assertion. |
file | File containing the failed assertion. |
line | Line number for the failed assertion. |
- Note
- This is defined as a weak function and can be overridden at the application layer to print the debugging information.
printf("%s, file: %s, line %d\n", expr, file, line);
-
To use debug assertions, the symbol
MXC_ASSERT_ENABLE
must be defined.