mirror of
https://github.com/postgres/postgres.git
synced 2026-04-27 09:07:42 -04:00
10 lines
148 B
C
10 lines
148 B
C
#ifndef MAINLOOP_H
|
|
#define MAINLOOP_H
|
|
|
|
#include <stdio.h>
|
|
#include "settings.h"
|
|
|
|
int
|
|
MainLoop(PsqlSettings *pset, FILE *source);
|
|
|
|
#endif MAINLOOP_H
|