1 /*
2  * Copyright (c) 2017 Oticon A/S
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #ifndef _XO_IF_H
7 #define _XO_IF_H
8 
9 #ifdef __cplusplus
10 extern "C"{
11 #endif
12 
13 long double phy_time_from_dev(long double dev_t);
14 long double dev_time_from_phy(long double phy_t);
15 
16 #ifdef __cplusplus
17 }
18 #endif
19 
20 #endif
21