1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2020 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, void *arg); 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 void *arg); 18 19 #endif 20