1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright (c) 2020 Dmitry Kozlyuk
5 #ifndef _CMDLINE_PRIVATE_H_
6 #define _CMDLINE_PRIVATE_H_
10 #include <rte_common.h>
11 #include <rte_os_shim.h>
12 #ifdef RTE_EXEC_ENV_WINDOWS
13 #include <rte_windows.h>
18 #ifdef RTE_EXEC_ENV_WINDOWS
23 int is_console_output;
29 cmdline_parse_ctx_t *ctx;
31 char prompt[RDLINE_PROMPT_SIZE];
32 struct terminal oldterm;
38 /* Disable buffering and echoing, save previous settings to oldterm. */
39 void terminal_adjust(struct cmdline *cl);
41 /* Restore terminal settings form oldterm. */
42 void terminal_restore(const struct cmdline *cl);
44 /* Check if a single character can be read from input. */
45 int cmdline_poll_char(struct cmdline *cl);
47 /* Read one character from input. */
48 ssize_t cmdline_read_char(struct cmdline *cl, char *c);
51 __rte_format_printf(2, 0)
52 int cmdline_vdprintf(int fd, const char *format, va_list op);