1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-07 11:02:12 +03:00
1996-07-09 06:22:35 +00:00

22 lines
532 B
C

/*-------------------------------------------------------------------------
*
* copy.h--
* Definitions for using the POSTGRES copy command.
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: copy.h,v 1.1.1.1 1996/07/09 06:21:19 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef COPY_H
#define COPY_H
#include "postgres.h"
void DoCopy(char *relname, bool binary, bool from, bool pipe, char *filename,
char *delim);
#endif /* COPY_H */