revert 10881, and refix by changing "if (vallen)" to "if (val)". this
[platform/upstream/busybox.git] / shell / cmdedit.h
1 #ifndef CMDEDIT_H
2 #define CMDEDIT_H
3
4 int     cmdedit_read_input(char* promptStr, char* command);
5
6 #ifdef CONFIG_ASH
7 extern const char *cmdedit_path_lookup;
8 #endif
9
10 #ifdef CONFIG_FEATURE_COMMAND_SAVEHISTORY
11 void    load_history ( const char *fromfile );
12 void    save_history ( const char *tofile );
13 #endif
14
15 #endif /* CMDEDIT_H */