1 /*
2  * Copyright (c) 2024 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #ifndef _NRF_HW_MODEL_UTILS_H
7 #define _NRF_HW_MODEL_UTILS_H
8 
9 #include <stddef.h>
10 
11 #ifdef __cplusplus
12 extern "C"{
13 #endif
14 
15 void hwu_reverse_byte_order(const unsigned char *in_data, unsigned char *out_data, size_t len);
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #endif /* _NRF_HW_MODEL_UTILS_H */
22