]> granicus.if.org Git - postgresql/blobdiff - src/bin/psql/input.h
Update copyright notices for year 2012.
[postgresql] / src / bin / psql / input.h
index dfe9cf6ba41852f007831ac93adafa5388378f34..ef2cc499527d787570e6de1df6d17fda50be2740 100644 (file)
@@ -1,9 +1,9 @@
 /*
  * psql - the PostgreSQL interactive terminal
  *
- * Copyright (c) 2000-2003, PostgreSQL Global Development Group
+ * Copyright (c) 2000-2012, PostgreSQL Global Development Group
  *
- * $Header: /cvsroot/pgsql/src/bin/psql/input.h,v 1.20 2003/08/04 23:59:40 tgl Exp $
+ * src/bin/psql/input.h
  */
 #ifndef INPUT_H
 #define INPUT_H
  */
 #ifdef HAVE_LIBREADLINE
 #define USE_READLINE 1
+
 #if defined(HAVE_READLINE_READLINE_H)
 #include <readline/readline.h>
+#if defined(HAVE_READLINE_HISTORY_H)
+#include <readline/history.h>
+#endif
 #elif defined(HAVE_EDITLINE_READLINE_H)
 #include <editline/readline.h>
+#if defined(HAVE_EDITLINE_HISTORY_H)
+#include <editline/history.h>
+#endif
 #elif defined(HAVE_READLINE_H)
 #include <readline.h>
-#endif
-#if defined(HAVE_READLINE_HISTORY_H)
-#include <readline/history.h>
-#elif defined(HAVE_EDITLINE_HISTORY_H)
-#include <editline/history.h>
-#elif defined(HAVE_HISTORY_H)
+#if defined(HAVE_HISTORY_H)
 #include <history.h>
 #endif
-#endif
+#endif   /* HAVE_READLINE_READLINE_H, etc */
+#endif   /* HAVE_LIBREADLINE */
+
+#include "pqexpbuffer.h"
 
 
 char      *gets_interactive(const char *prompt);
 char      *gets_fromFile(FILE *source);
 
 void           initializeInput(int flags);
-bool           saveHistory(char *fname);
+bool           saveHistory(char *fname, int max_lines, bool appendFlag, bool encodeFlag);
+
+void           pg_append_history(const char *s, PQExpBuffer history_buf);
+void           pg_send_history(PQExpBuffer history_buf);
 
 #endif   /* INPUT_H */