diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-11-04 21:56:02 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-11-04 21:56:02 +0000 |
commit | a45195a191eec367a4f305bb71ab541d17a3b9f9 (patch) | |
tree | 99b815a93f6175b0db76c2da0da39e95a0ee6b8d /src/bin/psql/help.h | |
parent | 2ea3b6d63addeaf07267e2390597645cbf013c36 (diff) |
Major psql overhaul by Peter Eisentraut.
Diffstat (limited to 'src/bin/psql/help.h')
-rw-r--r-- | src/bin/psql/help.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/bin/psql/help.h b/src/bin/psql/help.h new file mode 100644 index 00000000000..34bb2677643 --- /dev/null +++ b/src/bin/psql/help.h @@ -0,0 +1,16 @@ +#ifndef HELP_H +#define HELP_H + +#include "settings.h" + +void usage(void); + +void slashUsage(PsqlSettings *pset); + +void helpSQL(const char *topic); + +void print_copyright(void); + + +#endif + |