summaryrefslogtreecommitdiff
path: root/src/bin/psql/large_obj.h
blob: bb06867a2ec9ca65d3b00c233796c83e72dc8ae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef LARGE_OBJ_H
#define LARGE_OBJ_H

#include <c.h>
#include "settings.h"

bool		do_lo_export(PsqlSettings *pset, const char *loid_arg, const char *filename_arg);
bool		do_lo_import(PsqlSettings *pset, const char *filename_arg, const char *comment_arg);
bool		do_lo_unlink(PsqlSettings *pset, const char *loid_arg);
bool		do_lo_list(PsqlSettings *pset, bool desc);

#endif	 /* LARGE_OBJ_H */