1 /*
2  * Copyright (c) 2018 Oticon A/S
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #ifndef BS_DYNARGS_H
7 #define BS_DYNARGS_H
8 
9 #include <stdbool.h>
10 #include <stddef.h>
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 #include "bs_cmd_line.h"
17 
18 void bs_cleanup_dynargs(bs_args_struct_t **args_struct);
19 void bs_add_dynargs(bs_args_struct_t **all_args, bs_args_struct_t *new_args);
20 
21 //Devices which support this IF will typically provide this one:
22 void bs_add_extra_dynargs(bs_args_struct_t *args_struct_toadd);
23 
24 #ifdef __cplusplus
25 }
26 #endif
27 
28 #endif
29