getlin(const char *ques, char *input) -- Prints ques as a prompt and reads a single line of text, up to a newline. The string entered is returned without the newline. ESC is used to cancel, in which case the string "\033\000" is returned. -- getlin() must call flush_screen(1) before doing anything. -- This uses the
| 1162 | ports might use a popup. |
| 1163 | */ |
| 1164 | void |
| 1165 | curses_getlin(const char *question, char *input) |
| 1166 | { |
| 1167 | curses_line_input_dialog(question, input, BUFSZ); |
| 1168 | } |
| 1169 | |
| 1170 | /* |
| 1171 | int get_ext_cmd(void) |
nothing calls this directly
no test coverage detected