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