00001 /* rlshell.h -- utility functions normally provided by bash. */ 00002 00003 /* Copyright (C) 1999 Free Software Foundation, Inc. 00004 00005 This file is part of the GNU Readline Library, a library for 00006 reading lines of text with interactive input and history editing. 00007 00008 The GNU Readline Library is free software; you can redistribute it 00009 and/or modify it under the terms of the GNU General Public License 00010 as published by the Free Software Foundation; either version 2, or 00011 (at your option) any later version. 00012 00013 The GNU Readline Library is distributed in the hope that it will be 00014 useful, but WITHOUT ANY WARRANTY; without even the implied warranty 00015 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 GNU General Public License for more details. 00017 00018 The GNU General Public License is often shipped with GNU software, and 00019 is generally kept in a file called COPYING or LICENSE. If you do not 00020 have a copy of the license, write to the Free Software Foundation, 00021 59 Temple Place, Suite 330, Boston, MA 02111 USA. */ 00022 00023 #if !defined (_RL_SHELL_H_) 00024 #define _RL_SHELL_H_ 00025 00026 #include "rlstdc.h" 00027 00028 extern char *sh_single_quote PARAMS((char *)); 00029 extern void sh_set_lines_and_columns PARAMS((int, int)); 00030 extern char *sh_get_env_value PARAMS((const char *)); 00031 extern char *sh_get_home_dir PARAMS((void)); 00032 extern int sh_unset_nodelay_mode PARAMS((int)); 00033 00034 #endif /* _RL_SHELL_H_ */