aboutsummaryrefslogtreecommitdiffstats
path: root/examples/ip_pipeline/cli.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ip_pipeline/cli.h')
-rw-r--r--examples/ip_pipeline/cli.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/ip_pipeline/cli.h b/examples/ip_pipeline/cli.h
new file mode 100644
index 00000000..992e4c3a
--- /dev/null
+++ b/examples/ip_pipeline/cli.h
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2018 Intel Corporation
+ */
+
+#ifndef __INCLUDE_CLI_H__
+#define __INCLUDE_CLI_H__
+
+#include <stddef.h>
+
+void
+cli_process(char *in, char *out, size_t out_size);
+
+int
+cli_script_process(const char *file_name,
+ size_t msg_in_len_max,
+ size_t msg_out_len_max);
+
+#endif