aboutsummaryrefslogtreecommitdiff
path: root/shell/cmdedit.h
diff options
context:
space:
mode:
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();