blob: 791e0313ca1033b56de71c5b500934efda11ee85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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
|