mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-15 22:55:52 +00:00
For each driver/model with command line options. Move its code for the board file into the driver/model file. Signed-off-by: Alberto Escolar Piedras <alpi@oticon.com>
27 lines
553 B
C
27 lines
553 B
C
/*
|
|
* 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 */
|