Erik Andersen | 13456d1 | 2000-03-16 08:09:57 +0000 | [diff] [blame] | 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 | |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 15 | extern int cmdedit_read_input(char* prompt, int inputFd, int outputFd, char command[BUFSIZ]); |
Erik Andersen | 13456d1 | 2000-03-16 08:09:57 +0000 | [diff] [blame] | 16 | extern void cmdedit_init(void); |
| 17 | |