more bugs fixed -- found doing regression testing
[oweals/busybox.git] / cmdedit.h
1 #ifndef CMDEDIT_H
2 #define CMDEDIT_H
3
4 #ifdef BB_FEATURE_SH_COMMAND_EDITING
5 #include <stddef.h>
6
7 void cmdedit_init(void);
8 void cmdedit_terminate(void);
9 void cmdedit_read_input(char* promptStr, char* command);                /* read a line of input */
10
11 #endif /* BB_FEATURE_SH_COMMAND_EDITING */
12
13 #endif /* CMDEDIT_H */