2018-01-09 21:20:49 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Oticon A/S
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NATIVE_POSIX_CMDLINE_H
|
|
|
|
#define _NATIVE_POSIX_CMDLINE_H
|
|
|
|
|
2018-07-29 20:38:49 +08:00
|
|
|
#include "cmdline_common.h"
|
|
|
|
|
2018-02-11 23:30:49 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2018-01-09 21:20:49 +08:00
|
|
|
void native_handle_cmd_line(int argc, char *argv[]);
|
|
|
|
void native_get_cmd_line_args(int *argc, char ***argv);
|
2018-02-11 23:30:49 +08:00
|
|
|
void native_get_test_cmd_line_args(int *argc, char ***argv);
|
2018-07-29 20:38:49 +08:00
|
|
|
void native_add_command_line_opts(struct args_struct_t *args);
|
|
|
|
void native_cleanup_cmd_line(void);
|
2018-02-11 23:30:49 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2018-01-09 21:20:49 +08:00
|
|
|
|
|
|
|
#endif /* _NATIVE_POSIX_CMDLINE_H */
|