New upstream version 18.08
[deb_dpdk.git] / examples / ip_pipeline / cli.h
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