Fix obsolete comment regarding FSM truncation.
[PostgreSQL.git] / src / bin / psql / copy.h
blob28573c9be0a93cb432b698dc7d46e99746dcf6db
1 /*
2 * psql - the PostgreSQL interactive terminal
4 * Copyright (c) 2000-2008, PostgreSQL Global Development Group
6 * $PostgreSQL$
7 */
8 #ifndef COPY_H
9 #define COPY_H
11 #include "libpq-fe.h"
14 /* handler for \copy */
15 bool do_copy(const char *args);
17 /* lower level processors for copy in/out streams */
19 bool handleCopyOut(PGconn *conn, FILE *copystream);
20 bool handleCopyIn(PGconn *conn, FILE *copystream, bool isbinary);
22 #endif