Notes on portability, and on when #include <linux/blah> is appropriate.
[oweals/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 #if CONFIG_FEATURE_COMMAND_EDITING_VI
16 void    setvimode ( int viflag );
17 #endif
18
19 #endif /* CMDEDIT_H */