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