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
11void usage(unsigned short int pager);
12
13void slashUsage(unsigned short int pager);
14
15void helpVariables(unsigned short int pager);
16
17void helpSQL(const char *topic, unsigned short int pager);
18
19void print_copyright(void);
20
21#endif
22