1 | /* |
---|---|
2 | * psql - the PostgreSQL interactive terminal |
3 | * |
4 | * Copyright (c) 2000-2019, PostgreSQL Global Development Group |
5 | * |
6 | * src/bin/psql/mainloop.h |
7 | */ |
8 | #ifndef MAINLOOP_H |
9 | #define MAINLOOP_H |
10 | |
11 | #include "fe_utils/psqlscan.h" |
12 | |
13 | extern const PsqlScanCallbacks psqlscan_callbacks; |
14 | |
15 | extern int MainLoop(FILE *source); |
16 | |
17 | #endif /* MAINLOOP_H */ |
18 |