1 /*
2  * Copyright 2018 Oticon A/S
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #ifndef BS_CHANNEL_NTN_CABLE_ARGS_H
7 #define BS_CHANNEL_NTN_CABLE_ARGS_H
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 typedef struct{
14   double attenuation;
15 } ch_NtN_args_t;
16 
17 void channel_NtNcable_argparse(int argc, char *argv[], ch_NtN_args_t *args);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif
24