OSDN Git Service

A few minor psql enhancements
[pg-rex/syncrep.git] / src / bin / psql / large_obj.h
1 /*
2  * psql - the PostgreSQL interactive terminal
3  *
4  * Copyright 2000 by PostgreSQL Global Development Group
5  *
6  * $Header: /cvsroot/pgsql/src/bin/psql/large_obj.h,v 1.7 2000/01/29 16:58:49 petere Exp $
7  */
8 #ifndef LARGE_OBJ_H
9 #define LARGE_OBJ_H
10
11 #include <c.h>
12
13 bool            do_lo_export(const char *loid_arg, const char *filename_arg);
14 bool            do_lo_import(const char *filename_arg, const char *comment_arg);
15 bool            do_lo_unlink(const char *loid_arg);
16 bool            do_lo_list(void);
17
18 #endif   /* LARGE_OBJ_H */