summaryrefslogtreecommitdiff
path: root/shell/cmdedit.h
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-04-21 01:26:49 +0000
committerErik Andersen <andersen@codepoet.org>2000-04-21 01:26:49 +0000
commit1d1d95051a288b6bf64498aac9fb20047f384b7d (patch)
tree2c99ce8ba7d4d592806fbf81899e663bc884676b /shell/cmdedit.h
parentcf8d38a3eb46f4f9c4e674d43cff486cd79c9c0f (diff)
downloadbusybox-w32-1d1d95051a288b6bf64498aac9fb20047f384b7d.tar.gz
busybox-w32-1d1d95051a288b6bf64498aac9fb20047f384b7d.tar.bz2
busybox-w32-1d1d95051a288b6bf64498aac9fb20047f384b7d.zip
More Doc updates. cmdedit and more termio fixes.
Diffstat (limited to 'shell/cmdedit.h')
-rw-r--r--shell/cmdedit.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/cmdedit.h b/shell/cmdedit.h
index 0e465e50e..9ac7daca3 100644
--- a/shell/cmdedit.h
+++ b/shell/cmdedit.h
@@ -10,6 +10,7 @@
10 10
11typedef size_t (*cmdedit_strwidth_proc)(char *); 11typedef size_t (*cmdedit_strwidth_proc)(char *);
12 12
13void cmdedit_init(void);
13void cmdedit_read_input(char* promptStr, char* command); /* read a line of input */ 14void cmdedit_read_input(char* promptStr, char* command); /* read a line of input */
14void cmdedit_setwidth(int); /* specify width of screen */ 15void cmdedit_setwidth(int); /* specify width of screen */
15void cmdedit_histadd(char *); /* adds entries to hist */ 16void cmdedit_histadd(char *); /* adds entries to hist */
@@ -21,6 +22,7 @@ extern int (*cmdedit_tab_hook)(char *, int, int *);
21 22
22#else /* not __STDC__ */ 23#else /* not __STDC__ */
23 24
25void cmdedit_init(void);
24void cmdedit_read_input(char* promptStr, char* command); 26void cmdedit_read_input(char* promptStr, char* command);
25void cmdedit_setwidth(); 27void cmdedit_setwidth();
26void cmdedit_histadd(); 28void cmdedit_histadd();