Credited Christophe Boyaniqu for interactive patch to rm.
[oweals/busybox.git] / cmdedit.h
index 843a740706c453a640fc3ec448986dcbeb798ea2..b96ffd37327bb73a909d8c140af8b6ebc06d7508 100644 (file)
--- a/cmdedit.h
+++ b/cmdedit.h
@@ -1,17 +1,13 @@
-/*
- * 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.
- *
- */
+#ifndef CMDEDIT_H
+#define CMDEDIT_H
 
-extern int cmdedit_read_input(char* prompt, int inputFd, int outputFd, char command[BUFSIZ]);
-extern void cmdedit_init(void);
+#ifdef BB_FEATURE_SH_COMMAND_EDITING
+#include <stddef.h>
 
+void cmdedit_init(void);
+void cmdedit_terminate(void);
+void cmdedit_read_input(char* promptStr, char* command);               /* read a line of input */
+
+#endif /* BB_FEATURE_SH_COMMAND_EDITING */
+
+#endif /* CMDEDIT_H */