*
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/input.c,v 1.49 2006/02/13 14:57:15 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/input.c,v 1.50 2006/02/13 17:09:25 momjian Exp $
*/
#include "postgres_fe.h"
/* Put the line in the history buffer and also add the trailing \n */
-void pgadd_history(char *s, PQExpBuffer history_buf)
+void
+pgadd_history(char *s, PQExpBuffer history_buf)
{
#ifdef USE_READLINE
/* Feed the contents of the history buffer to readline */
-void pgflush_history(PQExpBuffer history_buf)
+void
+pgflush_history(PQExpBuffer history_buf)
{
#ifdef USE_READLINE
char *s;
#endif
}
-void pgclear_history(PQExpBuffer history_buf)
+void
+pgclear_history(PQExpBuffer history_buf)
{
#ifdef USE_READLINE
if (useReadline && useHistory)
#ifdef USE_READLINE
-static void encode_history(void)
+static void
+encode_history(void)
{
HIST_ENTRY *cur_hist;
char *cur_ptr;
*cur_ptr = NL_IN_HISTORY;
}
-static void decode_history(void)
+static void
+decode_history(void)
{
HIST_ENTRY *cur_hist;
char *cur_ptr;