Correct the reference in the comment to native posix. This header is here to stay providing the API for registering arguments. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
23 lines
425 B
C
23 lines
425 B
C
/*
|
|
* 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);
|
|
}
|