mirror of
https://github.com/postgres/postgres.git
synced 2025-05-21 00:02:53 -04:00
option down to pg_dump, where it's useless, and clarify the meaning of -c in the documentation.
28 lines
826 B
C
28 lines
826 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* Utility routines for SQL dumping
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
*
|
|
* $Header: /cvsroot/pgsql/src/bin/pg_dump/dumputils.h,v 1.4 2002/09/07 16:14:33 petere Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef DUMPUTILS_H
|
|
#define DUMPUTILS_H
|
|
|
|
#include "postgres_fe.h"
|
|
|
|
#include "pqexpbuffer.h"
|
|
|
|
extern char *simple_prompt(const char *prompt, int maxlen, bool echo);
|
|
|
|
extern const char *fmtId(const char *identifier);
|
|
extern void appendStringLiteral(PQExpBuffer buf, const char *str, bool escapeAll);
|
|
extern int parse_version(const char *versionString);
|
|
|
|
#endif /* DUMPUTILS_H */
|