diff options
author | Jari Aalto <jari.aalto@cante.net> | 1996-08-26 18:22:31 +0000 |
---|---|---|
committer | Jari Aalto <jari.aalto@cante.net> | 2009-09-12 16:46:49 +0000 |
commit | 726f63884db0132f01745f1fb4465e6621088ccf (patch) | |
tree | 6c2f7765a890a97e0e513cb539df43283a8f7c4d /builtins/common.h | |
download | android_external_bash-726f63884db0132f01745f1fb4465e6621088ccf.tar.gz android_external_bash-726f63884db0132f01745f1fb4465e6621088ccf.tar.bz2 android_external_bash-726f63884db0132f01745f1fb4465e6621088ccf.zip |
Imported from ../bash-1.14.7.tar.gz.
Diffstat (limited to 'builtins/common.h')
-rw-r--r-- | builtins/common.h | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/builtins/common.h b/builtins/common.h new file mode 100644 index 0000000..c7c99e7 --- /dev/null +++ b/builtins/common.h @@ -0,0 +1,69 @@ +/* common.h -- extern declarations for functions defined in common.c. */ + +/* Copyright (C) 1993 Free Software Foundation, Inc. + + This file is part of GNU Bash, the Bourne Again SHell. + + Bash is free software; you can redistribute it and/or modify it under + the terms of the GNU General Public License as published by the Free + Software Foundation; either version 2, or (at your option) any later + version. + + Bash is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + 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. */ + +#if !defined (__COMMON_H) +# define __COMMON_H + +#define ISOPTION(s, c) (s[0] == '-' && !s[2] && s[1] == c) + +extern void builtin_error (); +extern void bad_option (); + +extern int get_numeric_arg (); + +extern void remember_args (); + +extern void no_args (); + +extern int read_octal (); + +extern char *find_hashed_filename (); +extern void remove_hashed_filename (); +extern void remember_filename (); + +extern void push_context (), pop_context (); +extern void push_dollar_vars (), pop_dollar_vars (); +extern void dispose_saved_dollar_vars (); +extern int dollar_vars_changed (); +extern void set_dollar_vars_unchanged (), set_dollar_vars_changed (); + +/* Keeps track of the current working directory. */ +extern char *the_current_working_directory; +extern char *get_working_directory (); +extern void set_working_directory (); + +#if defined (JOB_CONTROL) +extern int get_job_spec (); +#endif + +extern int parse_and_execute (); +extern void parse_and_execute_cleanup (); + +extern void initialize_shell_builtins (); + +/* It's OK to declare a function as returning a Function * without + providing a definition of what a `Function' is. */ +extern Function *find_shell_builtin (); +extern Function *builtin_address (); + +extern char *single_quote (); +extern char *double_quote (); + +#endif /* !__COMMON_H */ |