blob: 36cf326a01c795cdc4ff61adff7b953bbe9e2ae6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* psql - the PostgreSQL interactive terminal
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/help.h,v 1.7 2001/10/25 05:49:54 momjian Exp $
*/
#ifndef HELP_H
#define HELP_H
void usage(void);
void slashUsage(void);
void helpSQL(const char *topic);
void print_copyright(void);
#endif
|