1 | /* |
---|---|
2 | * psql - the PostgreSQL interactive terminal |
3 | * |
4 | * Copyright (c) 2000-2019, PostgreSQL Global Development Group |
5 | * |
6 | * src/bin/psql/help.h |
7 | */ |
8 | #ifndef HELP_H |
9 | #define HELP_H |
10 | |
11 | void usage(unsigned short int pager); |
12 | |
13 | void slashUsage(unsigned short int pager); |
14 | |
15 | void helpVariables(unsigned short int pager); |
16 | |
17 | void helpSQL(const char *topic, unsigned short int pager); |
18 | |
19 | void print_copyright(void); |
20 | |
21 | #endif |
22 |