Fix compile error, the indenting really needs to be fixed here
[oweals/busybox.git] / shell / cmdedit.h
index e776543d6d1dd331fd9006339d6515d7881d6c66..991dafcd1ded39ed2ef2cbb3570902ac3e7c83aa 100644 (file)
@@ -1,17 +1,11 @@
-/*
- * 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(int inputFd, int outputFd, char command[BUFSIZ]);
-extern void cmdedit_init(void);
+int     cmdedit_read_input(char* promptStr, char* command);
 
+#ifdef CONFIG_FEATURE_COMMAND_SAVEHISTORY
+void    load_history ( const char *fromfile );
+void    save_history ( const char *tofile );
+#endif
+
+#endif /* CMDEDIT_H */