postgresql/src/bin/psql/mainloop.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
339 B
C
Raw Normal View History

2000-01-19 00:30:24 +01:00
/*
* psql - the PostgreSQL interactive terminal
*
* Copyright (c) 2000-2021, PostgreSQL Global Development Group
2000-01-19 00:30:24 +01:00
*
2010-09-20 22:08:53 +02:00
* src/bin/psql/mainloop.h
2000-01-19 00:30:24 +01:00
*/
#ifndef MAINLOOP_H
#define MAINLOOP_H
#include "fe_utils/psqlscan.h"
extern const PsqlScanCallbacks psqlscan_callbacks;
extern int MainLoop(FILE *source);
1999-11-05 00:14:30 +01:00
#endif /* MAINLOOP_H */