xref: /dpdk/examples/ip_pipeline/cli.h (revision d75c371e9b46565bab99e40f74973bda73e315e1)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2018 Intel Corporation
3  */
4 
5 #ifndef __INCLUDE_CLI_H__
6 #define __INCLUDE_CLI_H__
7 
8 #include <stddef.h>
9 
10 void
11 cli_process(char *in, char *out, size_t out_size);
12 
13 int
14 cli_script_process(const char *file_name,
15 	size_t msg_in_len_max,
16 	size_t msg_out_len_max);
17 
18 #endif
19