diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-03-16 08:09:57 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-03-16 08:09:57 +0000 |
commit | da90edc473610f1e1ee15cc82fe4f536dc9d048b (patch) | |
tree | 0d037e1e4bdccc54b86db8f4b03e096804124904 /shell/cmdedit.h | |
parent | e8fd0c315c3509c1209640614b352b44732be74a (diff) | |
download | busybox-w32-da90edc473610f1e1ee15cc82fe4f536dc9d048b.tar.gz busybox-w32-da90edc473610f1e1ee15cc82fe4f536dc9d048b.tar.bz2 busybox-w32-da90edc473610f1e1ee15cc82fe4f536dc9d048b.zip |
Forgot these files...
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@407 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/cmdedit.h')
-rw-r--r-- | shell/cmdedit.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/shell/cmdedit.h b/shell/cmdedit.h new file mode 100644 index 000000000..e776543d6 --- /dev/null +++ b/shell/cmdedit.h | |||
@@ -0,0 +1,17 @@ | |||
1 | /* | ||
2 | * Termios command line History and Editting for NetBSD sh (ash) | ||
3 | * Copyright (c) 1999 | ||
4 | * Main code: Adam Rogoyski <rogoyski@cs.utexas.edu> | ||
5 | * Etc: Dave Cinege <dcinege@psychosis.com> | ||
6 | * Adjusted for busybox: Erik Andersen <andersee@debian.org> | ||
7 | * | ||
8 | * You may use this code as you wish, so long as the original author(s) | ||
9 | * are attributed in any redistributions of the source code. | ||
10 | * This code is 'as is' with no warranty. | ||
11 | * This code may safely be consumed by a BSD or GPL license. | ||
12 | * | ||
13 | */ | ||
14 | |||
15 | extern int cmdedit_read_input(int inputFd, int outputFd, char command[BUFSIZ]); | ||
16 | extern void cmdedit_init(void); | ||
17 | |||