OSDN Git Service

Another pgindent run. Fixes enum indenting, and improves #endif
[pg-rex/syncrep.git] / src / bin / psql / large_obj.h
index 22228e7..2af4bcb 100644 (file)
@@ -1,11 +1,16 @@
+/*
+ * psql - the PostgreSQL interactive terminal
+ *
+ * Copyright 2000 by PostgreSQL Global Development Group
+ *
+ * $Header: /cvsroot/pgsql/src/bin/psql/large_obj.h,v 1.10 2001/10/28 06:25:58 momjian Exp $
+ */
 #ifndef LARGE_OBJ_H
 #define LARGE_OBJ_H
 
-#include "settings.h"
+bool           do_lo_export(const char *loid_arg, const char *filename_arg);
+bool           do_lo_import(const char *filename_arg, const char *comment_arg);
+bool           do_lo_unlink(const char *loid_arg);
+bool           do_lo_list(void);
 
-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);
-
-#endif /* LARGE_OBJ_H */
+#endif  /* LARGE_OBJ_H */