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 #include "action.h" 11 12 void 13 cli_process(char *in, char *out, size_t out_size); 14 15 int 16 cli_script_process(const char *file_name, 17 size_t msg_in_len_max, 18 size_t msg_out_len_max); 19 20 #endif 21