mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-12 09:27:04 +08:00
Initdb help correction Changed end/abort to commit/rollback and changed related notices Commented out way old printing functions in libpq Fixed a typo in alter table / alter column
16 lines
319 B
C
16 lines
319 B
C
/*
|
|
* psql - the PostgreSQL interactive terminal
|
|
*
|
|
* Copyright 2000 by PostgreSQL Global Development Group
|
|
*
|
|
* $Header: /cvsroot/pgsql/src/bin/psql/mainloop.h,v 1.6 2000/01/29 16:58:49 petere Exp $
|
|
*/
|
|
#ifndef MAINLOOP_H
|
|
#define MAINLOOP_H
|
|
|
|
#include <stdio.h>
|
|
|
|
int MainLoop(FILE *source);
|
|
|
|
#endif /* MAINLOOP_H */
|