14#ifndef MCUX_CSSL_EXAMPLES_H_
15#define MCUX_CSSL_EXAMPLES_H_
21#define MCUX_CSSL_EX_FUNCTION(_name) __attribute__((section(".example"))) bool _name(void)
23#define MCUX_CSSL_EX_OK (bool) true
24#define MCUX_CSSL_EX_ERROR (bool) false
26static inline bool mcuxCsslExamples_assertEqual(
const uint8_t *
const x,
const uint8_t *
const y, uint32_t length)
28 for (uint32_t i = 0; i < length; ++i)
39MCUX_CSSL_EX_FUNCTION(mcuxCsslFlowProtection_Assert_example);
40MCUX_CSSL_EX_FUNCTION(mcuxCsslFlowProtection_Branch_example);
41MCUX_CSSL_EX_FUNCTION(mcuxCsslFlowProtection_Function_example);
42MCUX_CSSL_EX_FUNCTION(mcuxCsslFlowProtection_Loop_example);