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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user