diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-07-28 15:14:45 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-07-28 15:14:45 +0000 |
commit | 501c88b245fdc63f3f2a044fd7704bb468db3904 (patch) | |
tree | 3fff440532d8d380ae7e4f2933bc7163360f8279 /shell/cmdedit.h | |
parent | 6a99aaf0208151b7f5e5058efaa409496e2b7c4b (diff) |
More sh updates (with related changes to everything else). Switched
to using getopt and cleaned up the resulting mess. if-then-else-fi
is now basically working (given a bunch of constraints).
-Erik
Diffstat (limited to 'shell/cmdedit.h')
-rw-r--r-- | shell/cmdedit.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/cmdedit.h b/shell/cmdedit.h index b621ae8ec..27f7b5500 100644 --- a/shell/cmdedit.h +++ b/shell/cmdedit.h @@ -11,6 +11,7 @@ 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 */ |