00001 /* 00002 * psql - the PostgreSQL interactive terminal 00003 * 00004 * Copyright (c) 2000-2013, PostgreSQL Global Development Group 00005 * 00006 * src/bin/psql/help.h 00007 */ 00008 #ifndef HELP_H 00009 #define HELP_H 00010 00011 void usage(void); 00012 00013 void slashUsage(unsigned short int pager); 00014 00015 void helpSQL(const char *topic, unsigned short int pager); 00016 00017 void print_copyright(void); 00018 00019 #endif