1 /*
2  * Copyright (c) 2020 Andreas Sandberg
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_SUBSYS_LORAWAN_LW_PRIV_H_
8 #define ZEPHYR_SUBSYS_LORAWAN_LW_PRIV_H_
9 
10 const int lorawan_status2errno(unsigned int status);
11 const char *lorawan_status2str(unsigned int status);
12 
13 const int lorawan_eventinfo2errno(unsigned int status);
14 const char *lorawan_eventinfo2str(unsigned int status);
15 
16 #endif /* ZEPHYR_SUBSYS_LORAWAN_LW_PRIV_H_ */
17