aboutsummaryrefslogtreecommitdiff
path: root/shell/cmdedit.h
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-04-21 01:26:49 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-04-21 01:26:49 +0000
commitf2d936410c1523ab9bfc0663053d444589b2e7d7 (patch)
tree2c99ce8ba7d4d592806fbf81899e663bc884676b /shell/cmdedit.h
parente8140c5cf14be7ddbc10f1bf834fd4150994a184 (diff)
downloadbusybox-w32-f2d936410c1523ab9bfc0663053d444589b2e7d7.tar.gz
busybox-w32-f2d936410c1523ab9bfc0663053d444589b2e7d7.tar.bz2
busybox-w32-f2d936410c1523ab9bfc0663053d444589b2e7d7.zip
More Doc updates. cmdedit and more termio fixes.
git-svn-id: svn://busybox.net/trunk/busybox@492 69ca8d6d-28ef-0310-b511-8ec308f3f277
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();