diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-03-16 08:09:57 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-03-16 08:09:57 +0000 |
commit | 13456d1fcd0122d8464c3c3e1c356d86a56e6c08 (patch) | |
tree | 0d037e1e4bdccc54b86db8f4b03e096804124904 /cmdedit.h | |
parent | d75af99529879e6cd38164fd110732052a9cdda4 (diff) |
Forgot these files...
-Erik
Diffstat (limited to 'cmdedit.h')
-rw-r--r-- | cmdedit.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/cmdedit.h b/cmdedit.h new file mode 100644 index 000000000..e776543d6 --- /dev/null +++ b/cmdedit.h @@ -0,0 +1,17 @@ +/* + * Termios command line History and Editting for NetBSD sh (ash) + * Copyright (c) 1999 + * Main code: Adam Rogoyski <rogoyski@cs.utexas.edu> + * Etc: Dave Cinege <dcinege@psychosis.com> + * Adjusted for busybox: Erik Andersen <andersee@debian.org> + * + * You may use this code as you wish, so long as the original author(s) + * are attributed in any redistributions of the source code. + * This code is 'as is' with no warranty. + * This code may safely be consumed by a BSD or GPL license. + * + */ + +extern int cmdedit_read_input(int inputFd, int outputFd, char command[BUFSIZ]); +extern void cmdedit_init(void); + |