1 /* 2 * Copyright (c) 2021, Arm Limited. All rights reserverd. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef _FTPM_HELPERS_ 8 #define _FTPM_HELPERS_ 9 10 #include <stdint.h> 11 12 uint16_t SwapBytes16(uint16_t Value); 13 uint32_t SwapBytes32(uint32_t Value); 14 15 #endif /* _FTPM_HELPERS_ */ 16