msh: fix Ctrl-C handling with line editing

This commit is contained in:
Denis Vlasenko
2008-02-02 18:35:55 +00:00
parent a2980c6249
commit 80667e30fb
3 changed files with 7 additions and 6 deletions

View File

@ -963,10 +963,9 @@ enum {
};
line_input_t *new_line_input_t(int flags);
/* Returns:
* -1 on read errors or EOF, or on bare Ctrl-D.
* 0 on ctrl-C,
* -1 on read errors or EOF, or on bare Ctrl-D,
* 0 on ctrl-C (the line entered is still returned in 'command'),
* >0 length of input string, including terminating '\n'
* [is this true? stores "" in 'command' if return value is 0 or -1]
*/
int read_line_input(const char* prompt, char* command, int maxsize, line_input_t *state);
#else