Create find_applet_by_name function. Save 32 bytes.
[oweals/busybox.git] / shell / cmdedit.h
index 0e465e50e3a503d4eb088da46edbec75e8efe5fd..b96ffd37327bb73a909d8c140af8b6ebc06d7508 100644 (file)
@@ -1,35 +1,13 @@
-#ifndef GETLINE_H
-#define GETLINE_H
+#ifndef CMDEDIT_H
+#define CMDEDIT_H
 
-/* unix systems can #define POSIX to use termios, otherwise 
- * the bsd or sysv interface will be used 
- */
-
-#ifdef __STDC__ 
+#ifdef BB_FEATURE_SH_COMMAND_EDITING
 #include <stddef.h>
 
-typedef size_t (*cmdedit_strwidth_proc)(char *);
-
+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 *);
-
-#else  /* not __STDC__ */
-
-void cmdedit_read_input(char* promptStr, char* command);
-void cmdedit_setwidth();
-void cmdedit_histadd();
-void cmdedit_strwidth();
-
-extern int     (*cmdedit_in_hook)();
-extern int     (*cmdedit_out_hook)();
-extern int     (*cmdedit_tab_hook)();
 
-#endif /* __STDC__ */
+#endif /* BB_FEATURE_SH_COMMAND_EDITING */
 
-#endif /* GETLINE_H */
+#endif /* CMDEDIT_H */