1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2024 HiSilicon Limited 3 */ 4 5 #include "rte_argparse.h" 6 7 int 8 rte_argparse_parse(struct rte_argparse *obj, int argc, char **argv) 9 { 10 (void)obj; 11 (void)argc; 12 (void)argv; 13 return 0; 14 } 15