Forgot these files...

-Erik
This commit is contained in:
Erik Andersen
2000-03-16 08:09:57 +00:00
parent d75af99529
commit 13456d1fcd
8 changed files with 2262 additions and 0 deletions

17
shell/cmdedit.h Normal file
View File

@@ -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);