diff options
author | Jari Aalto <jari.aalto@cante.net> | 2000-03-17 21:46:59 +0000 |
---|---|---|
committer | Jari Aalto <jari.aalto@cante.net> | 2009-09-12 16:46:53 +0000 |
commit | bb70624e964126b7ac4ff085ba163a9c35ffa18f (patch) | |
tree | ba2dd4add13ada94b1899c6d4aca80195b80b74b /builtins/common.h | |
parent | b72432fdcc59300c6fe7c9d6c8a31ad3447933f5 (diff) | |
download | android_external_bash-bb70624e964126b7ac4ff085ba163a9c35ffa18f.tar.gz android_external_bash-bb70624e964126b7ac4ff085ba163a9c35ffa18f.tar.bz2 android_external_bash-bb70624e964126b7ac4ff085ba163a9c35ffa18f.zip |
Imported from ../bash-2.04.tar.gz.
Diffstat (limited to 'builtins/common.h')
-rw-r--r-- | builtins/common.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/builtins/common.h b/builtins/common.h index f6fa101..1404354 100644 --- a/builtins/common.h +++ b/builtins/common.h @@ -16,12 +16,12 @@ You should have received a copy of the GNU General Public License along with Bash; see the file COPYING. If not, write to the Free Software - Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */ #if !defined (__COMMON_H) # define __COMMON_H -#include "../stdc.h" +#include "stdc.h" #define ISOPTION(s, c) (s[0] == '-' && !s[2] && s[1] == c) @@ -72,7 +72,9 @@ extern void initialize_shell_builtins __P((void)); extern char *single_quote __P((char *)); extern char *double_quote __P((char *)); +extern char *un_double_quote __P((char *)); extern char *backslash_quote __P((char *)); +extern char *backslash_quote_for_double_quotes __P((char *)); extern int contains_shell_metas __P((char *)); /* Functions from set.def */ @@ -81,9 +83,11 @@ extern void list_minus_o_opts __P((int, int)); extern int set_minus_o_option __P((int, char *)); extern int minus_o_option_value __P((char *)); extern void reset_shell_options __P((void)); +extern char **get_minus_o_opts __P((void)); /* Functions from shopt.def */ extern void reset_shopt_options __P((void)); +extern char **get_shopt_options __P((void)); /* Functions from type.def */ extern int describe_command __P((char *, int, int)); |