PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
help.h
Go to the documentation of this file.
1/*
2 * psql - the PostgreSQL interactive terminal
3 *
4 * Copyright (c) 2000-2025, 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
void helpVariables(unsigned short int pager)
Definition: help.c:358
void helpSQL(const char *topic, unsigned short int pager)
Definition: help.c:571
void usage(unsigned short int pager)
Definition: help.c:48
void slashUsage(unsigned short int pager)
Definition: help.c:148
void print_copyright(void)
Definition: help.c:733