You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
425 B
22 lines
425 B
/* |
|
* Copyright (c) 2023 Nordic Semiconductor ASA |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#include "nsi_cmdline.h" |
|
|
|
void native_add_command_line_opts(struct args_struct_t *args) |
|
{ |
|
nsi_add_command_line_opts(args); |
|
} |
|
|
|
void native_get_cmd_line_args(int *argc, char ***argv) |
|
{ |
|
nsi_get_cmd_line_args(argc, argv); |
|
} |
|
|
|
void native_get_test_cmd_line_args(int *argc, char ***argv) |
|
{ |
|
nsi_get_test_cmd_line_args(argc, argv); |
|
}
|
|
|