1 /*
2  * Copyright (c) 2023 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /**
8  * @file
9  * @brief API to the native simulator expects any integrating program has for handling
10  *        command line argument parsing
11  */
12 
13 #ifndef NATIVE_SIMULATOR_COMMON_SRC_NSI_CMDLINE_MAIN_IF_H
14 #define NATIVE_SIMULATOR_COMMON_SRC_NSI_CMDLINE_MAIN_IF_H
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
20 void nsi_handle_cmd_line(int argc, char *argv[]);
21 void nsi_register_extra_args(int argc, char *argv[]);
22 
23 #ifdef __cplusplus
24 }
25 #endif
26 
27 #endif /* NATIVE_SIMULATOR_COMMON_SRC_NSI_CMDLINE_MAIN_IF_H */
28