1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-12 02:37:31 +03:00

pgindent run on all C files. Java run to follow. initdb/regression

tests pass.
This commit is contained in:
Bruce Momjian
2001-10-25 05:50:21 +00:00
parent 59da2105d8
commit b81844b173
818 changed files with 21684 additions and 20491 deletions

View File

@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/common.h,v 1.14 2001/10/03 21:58:28 tgl Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/common.h,v 1.15 2001/10/25 05:49:53 momjian Exp $
*/
#ifndef COMMON_H
#define COMMON_H
@@ -13,28 +13,27 @@
#include "pqsignal.h"
#include "libpq-fe.h"
extern char *xstrdup(const char *string);
extern char *xstrdup(const char *string);
extern bool setQFout(const char *fname);
extern bool setQFout(const char *fname);
extern void psql_error(const char *fmt, ...)
extern void
psql_error(const char *fmt,...)
/* This lets gcc check the format string for consistency. */
__attribute__((format(printf, 1, 2)));
extern void NoticeProcessor(void *arg, const char *message);
extern void NoticeProcessor(void *arg, const char *message);
extern char *simple_prompt(const char *prompt, int maxlen, bool echo);
extern char *simple_prompt(const char *prompt, int maxlen, bool echo);
extern volatile bool cancel_pressed;
extern PGconn *cancelConn;
#ifndef WIN32
extern void handle_sigint(SIGNAL_ARGS);
extern void handle_sigint(SIGNAL_ARGS);
#endif /* not WIN32 */
extern PGresult *PSQLexec(const char *query);
extern bool SendQuery(const char *query);
extern PGresult *PSQLexec(const char *query);
extern bool SendQuery(const char *query);
#endif /* COMMON_H */