mirror of
https://github.com/postgres/postgres.git
synced 2025-06-05 00:02:04 -04:00
"traditional" behavior, so the change should be transparent. Use the command "\pset pager always" to turn it on. Anything else does the normal toggle between "on" and "off" Greg Sabino Mullane
20 lines
384 B
C
20 lines
384 B
C
/*
|
|
* psql - the PostgreSQL interactive terminal
|
|
*
|
|
* Copyright 2000 by PostgreSQL Global Development Group
|
|
*
|
|
* $Header: /cvsroot/pgsql/src/bin/psql/help.h,v 1.11 2002/11/08 19:12:21 momjian Exp $
|
|
*/
|
|
#ifndef HELP_H
|
|
#define HELP_H
|
|
|
|
void usage(void);
|
|
|
|
void slashUsage(unsigned short int pager);
|
|
|
|
void helpSQL(const char *topic, bool pager);
|
|
|
|
void print_copyright(void);
|
|
|
|
#endif
|