This incorporates Posix math support into ash. The Posix math support
[oweals/busybox.git] / cmdedit.h
index 27f7b5500dc632292b63c7c469c8a5ac4196af55..83893572a259995a4f410c394ae218647c53459d 100644 (file)
--- a/cmdedit.h
+++ b/cmdedit.h
@@ -1,38 +1,6 @@
 #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__ 
-#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_init(void);
-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__ */
+int     cmdedit_read_input(char* promptStr, char* command);
 
 #endif /* CMDEDIT_H */