Clean up.
[oweals/busybox.git] / shell / cmdedit.h
index 8ebf0d064f9569e556d11b5658de567e75526712..f8482f4a768808c97d99c71a01a6c8e69b24e82c 100644 (file)
@@ -1,26 +1,19 @@
 #ifndef CMDEDIT_H
 #define CMDEDIT_H
 
-#ifdef BB_FEATURE_SH_COMMAND_EDITING
-/* unix systems can #define POSIX to use termios, otherwise 
- * the bsd or sysv interface will be used 
- */
+int     cmdedit_read_input(char* promptStr, char* command);
 
-#include <stddef.h>
+#ifdef CONFIG_ASH
+extern const char *cmdedit_path_lookup;
+#endif
 
-typedef size_t (*cmdedit_strwidth_proc)(char *);
+#ifdef CONFIG_FEATURE_COMMAND_SAVEHISTORY
+void    load_history ( const char *fromfile );
+void    save_history ( const char *tofile );
+#endif
 
-void cmdedit_init(void);
-void cmdedit_terminate(void);
-void cmdedit_read_input(char* promptStr, char* command);               /* read a line of input */
-void cmdedit_setwidth(int);            /* specify width of screen */
-void cmdedit_histadd(char *);          /* adds entries to hist */
-void cmdedit_strwidth(cmdedit_strwidth_proc);  /* to bind cmdedit_strlen */
-
-extern int     (*cmdedit_in_hook)(char *);
-extern int     (*cmdedit_out_hook)(char *);
-extern int     (*cmdedit_tab_hook)(char *, int, int *);
-
-#endif /* BB_FEATURE_SH_COMMAND_EDITING */
+#if CONFIG_FEATURE_COMMAND_EDITING_VI
+void   setvimode ( int viflag );
+#endif
 
 #endif /* CMDEDIT_H */