Shutdown sending on the socket when stdin closes.
[oweals/busybox.git] / cmdedit.h
index e776543d6d1dd331fd9006339d6515d7881d6c66..8ebf0d064f9569e556d11b5658de567e75526712 100644 (file)
--- a/cmdedit.h
+++ b/cmdedit.h
@@ -1,17 +1,26 @@
-/*
- * 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
+
+#ifdef BB_FEATURE_SH_COMMAND_EDITING
+/* unix systems can #define POSIX to use termios, otherwise 
+ * the bsd or sysv interface will be used 
  */
 
-extern int cmdedit_read_input(int inputFd, int outputFd, char command[BUFSIZ]);
-extern void cmdedit_init(void);
+#include <stddef.h>
+
+typedef size_t (*cmdedit_strwidth_proc)(char *);
+
+void cmdedit_init(void);
+void cmdedit_terminate(void);
+void cmdedit_read_input(char* promptStr, char* command);               /* read a line of input */
+void cmdedit_setwidth(int);            /* specify width of screen */
+void cmdedit_histadd(char *);          /* adds entries to hist */
+void cmdedit_strwidth(cmdedit_strwidth_proc);  /* to bind cmdedit_strlen */
+
+extern int     (*cmdedit_in_hook)(char *);
+extern int     (*cmdedit_out_hook)(char *);
+extern int     (*cmdedit_tab_hook)(char *, int, int *);
+
+#endif /* BB_FEATURE_SH_COMMAND_EDITING */
 
+#endif /* CMDEDIT_H */