2000-01-18 18:30:24 -05:00
|
|
|
/*
|
|
|
|
|
* psql - the PostgreSQL interactive terminal
|
|
|
|
|
*
|
2008-01-01 14:46:01 -05:00
|
|
|
* Copyright (c) 2000-2008, PostgreSQL Global Development Group
|
2000-01-18 18:30:24 -05:00
|
|
|
*
|
2008-01-01 14:46:01 -05:00
|
|
|
* $PostgreSQL: pgsql/src/bin/psql/mainloop.h,v 1.22 2008/01/01 19:45:56 momjian Exp $
|
2000-01-18 18:30:24 -05:00
|
|
|
*/
|
1999-11-04 16:56:02 -05:00
|
|
|
#ifndef MAINLOOP_H
|
|
|
|
|
#define MAINLOOP_H
|
|
|
|
|
|
2001-02-09 21:31:31 -05:00
|
|
|
#include "postgres_fe.h"
|
2000-02-20 09:28:28 -05:00
|
|
|
|
2000-04-12 13:17:23 -04:00
|
|
|
int MainLoop(FILE *source);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2001-11-05 12:46:40 -05:00
|
|
|
#endif /* MAINLOOP_H */
|