34#ifndef MCUX_CSSL_EXAMPLES_H_
35#define MCUX_CSSL_EXAMPLES_H_
41#define MCUX_CSSL_EX_FUNCTION(_name) __attribute__((section(".example"))) bool _name(void)
43#define MCUX_CSSL_EX_OK (bool) true
44#define MCUX_CSSL_EX_ERROR (bool) false
46static inline bool mcuxCsslExamples_assertEqual(
const uint8_t *
const x,
const uint8_t *
const y, uint32_t length)
48 for (uint32_t i = 0; i < length; ++i)
59MCUX_CSSL_EX_FUNCTION(mcuxCsslFlowProtection_Assert_example);
60MCUX_CSSL_EX_FUNCTION(mcuxCsslFlowProtection_Branch_example);
61MCUX_CSSL_EX_FUNCTION(mcuxCsslFlowProtection_Function_example);
62MCUX_CSSL_EX_FUNCTION(mcuxCsslFlowProtection_Loop_example);