zephyr/boards/native/native_sim/cmdline.c
Alberto Escolar Piedras b6625b1b28 boards native_sim: Update cmdline.h header comment
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>
2025-03-07 19:16:14 +01:00

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);
}