aboutsummaryrefslogtreecommitdiff
path: root/shell/cmdedit.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-01-04 11:09:00 +0000
committerEric Andersen <andersen@codepoet.org>2001-01-04 11:09:00 +0000
commit849083c8862b1d7d1246e50b38f453edcec3a58c (patch)
tree8f812564d03f01e69a36a350edf2a158eab8cb1d /shell/cmdedit.h
parentb3dc3b8990f3380d6dd3051ef75b5f6c8e13b319 (diff)
downloadbusybox-849083c8862b1d7d1246e50b38f453edcec3a58c.tar.gz
Update interface per what now exists...
Diffstat (limited to 'shell/cmdedit.h')
-rw-r--r--shell/cmdedit.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/shell/cmdedit.h b/shell/cmdedit.h
index 8ebf0d064..b96ffd373 100644
--- a/shell/cmdedit.h
+++ b/shell/cmdedit.h
@@ -2,24 +2,11 @@
#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
- */
-
#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 *);
#endif /* BB_FEATURE_SH_COMMAND_EDITING */