/* * psql - the PostgreSQL interactive terminal * * Copyright 2000 by PostgreSQL Global Development Group * * $Header: /cvsroot/pgsql/src/bin/psql/input.h,v 1.7 2000/02/07 23:10:06 petere Exp $ */ #ifndef INPUT_H #define INPUT_H #include #include /* * If some other file needs to have access to readline/history, include this * file and save yourself all this work. * * USE_READLINE and USE_HISTORY are the definite pointers regarding existence or not. */ #ifdef HAVE_LIBREADLINE # ifdef HAVE_READLINE_H # include # define USE_READLINE 1 # elif defined(HAVE_READLINE_READLINE_H) # include # define USE_READLINE 1 # endif #endif #if defined(HAVE_LIBHISTORY) || (defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_IN_READLINE)) # ifdef HAVE_HISTORY_H # include # define USE_HISTORY 1 # elif defined(HAVE_READLINE_HISTORY_H) # include # define USE_HISTORY 1 # endif #endif char * gets_interactive(char *prompt); char * gets_fromFile(FILE *source); void initializeInput(int flags); bool saveHistory(char *fname); void finishInput(void); #endif /* INPUT_H */