14#ifndef MCUXCLCORE_TOOLCHAIN_H_
15#define MCUXCLCORE_TOOLCHAIN_H_
17#include <mcuxClCore_Platform.h>
21static inline uint64_t mcuxCl_Core_Swap64(uint64_t value)
23 return __builtin_bswap64(value);
27static inline uint32_t mcuxCl_Core_Swap32(uint32_t value)
29 return __builtin_bswap32(value);
Provides the API for the CSSL flow protection mechanism.
#define MCUX_CSSL_FP_FUNCTION_DEF(...)
Definition of a flow protected function.
Definition mcuxCsslFlowProtection.h:159