HPM SDK
HPMicro Software Development Kit
hpm_swap.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2024 HPMicro
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  */
7 
8 #ifndef _HPM_SWAP_H
9 #define _HPM_SWAP_H
10 
11 #include <stdint.h>
12 #ifdef __cplusplus
13 extern "C" {
14 #endif /* __cplusplus */
15 
16 uint32_t __bswapsi2(uint32_t u);
17 uint64_t __bswapdi2(uint64_t u);
18 
19 #ifdef __cplusplus
20 }
21 #endif /* __cplusplus */
22 #endif