blob: 05d445ddd1b7ed0ccc8a8ef35eec2923716814fe [file] [log] [blame]
/*
* Copyright (c) 2018 Oticon A/S
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef _NATIVE_POSIX_CMDLINE_H
#define _NATIVE_POSIX_CMDLINE_H
#include "cmdline_common.h"
#ifdef __cplusplus
extern "C" {
#endif
void native_handle_cmd_line(int argc, char *argv[]);
void native_get_cmd_line_args(int *argc, char ***argv);
void native_get_test_cmd_line_args(int *argc, char ***argv);
void native_add_command_line_opts(struct args_struct_t *args);
void native_cleanup_cmd_line(void);
#ifdef __cplusplus
}
#endif
#endif /* _NATIVE_POSIX_CMDLINE_H */