mirror of
https://github.com/postgres/postgres.git
synced 2025-06-23 14:01:44 +03:00
16 lines
186 B
C
16 lines
186 B
C
#ifndef HELP_H
|
|
#define HELP_H
|
|
|
|
#include "settings.h"
|
|
|
|
void usage(void);
|
|
|
|
void slashUsage(PsqlSettings *pset);
|
|
|
|
void helpSQL(const char *topic);
|
|
|
|
void print_copyright(void);
|
|
|
|
|
|
#endif
|