d75c371e9b
Add pipeline object implementation to the application. Signed-off-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com> Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
19 lines
325 B
C
19 lines
325 B
C
/* 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
|