summaryrefslogtreecommitdiff
path: root/syntax.h
diff options
context:
space:
mode:
authorJari Aalto <jari.aalto@cante.net>2001-04-06 19:14:31 +0000
committerJari Aalto <jari.aalto@cante.net>2009-09-12 16:46:53 +0000
commit28ef6c316f1aff914bb95ac09787a3c83c1815fd (patch)
tree2812fe7ffc9beec4f99856906ddfcafda54cf16a /syntax.h
parentbb70624e964126b7ac4ff085ba163a9c35ffa18f (diff)
downloadbash-28ef6c316f1aff914bb95ac09787a3c83c1815fd.tar.gz
Imported from ../bash-2.05.tar.gz.
Diffstat (limited to 'syntax.h')
-rw-r--r--syntax.h91
1 files changed, 91 insertions, 0 deletions
diff --git a/syntax.h b/syntax.h
new file mode 100644
index 00000000..87938d61
--- /dev/null
+++ b/syntax.h
@@ -0,0 +1,91 @@
+/* syntax.h -- Syntax definitions for the shell */
+
+/* Copyright (C) 2000 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, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
+
+#ifndef _SYNTAX_H_
+#define _SYNTAX_H_
+
+/* Defines for use by mksyntax.c */
+
+#define slashify_in_quotes "\\`$\"\n"
+#define slashify_in_here_document "\\`$"
+
+#define shell_meta_chars "()<>;&|"
+#define shell_break_chars "()<>;&| \t\n"
+
+#define shell_quote_chars "\"`'"
+
+#if defined (PROCESS_SUBSTITUTION)
+# define shell_exp_chars "$<>"
+#else
+# define shell_exp_chars "$"
+#endif
+
+#if defined (EXTENDED_GLOB)
+# define ext_glob_chars "@*+?!"
+#else
+# define ext_glob_chars ""
+#endif
+#define shell_glob_chars "*?[]^"
+
+/* Defines shared by mksyntax.c and the rest of the shell code. */
+
+/* Values for character flags in syntax tables */
+
+#define CWORD 0x0000 /* nothing special; an ordinary character */
+#define CSHMETA 0x0001 /* shell meta character */
+#define CSHBRK 0x0002 /* shell break character */
+#define CBACKQ 0x0004 /* back quote */
+#define CQUOTE 0x0008 /* shell quote character */
+#define CSPECL 0x0010 /* special character that needs quoting */
+#define CEXP 0x0020 /* shell expansion character */
+#define CBSDQUOTE 0x0040 /* characters escaped by backslash in double quotes */
+#define CBSHDOC 0x0080 /* characters escaped by backslash in here doc */
+#define CGLOB 0x0100 /* globbing characters */
+#define CXGLOB 0x0200 /* extended globbing characters */
+#define CXQUOTE 0x0400 /* cquote + backslash */
+#define CSPECVAR 0x0800 /* single-character shell variable name */
+
+/* Defines for use by the rest of the shell. */
+extern const int sh_syntaxtab[];
+
+#define shellmeta(c) (sh_syntaxtab[(c)] & CSHMETA)
+#define shellbreak(c) (sh_syntaxtab[(c)] & CSHBRK)
+#define shellquote(c) (sh_syntaxtab[(c)] & CQUOTE)
+
+#if defined (PROCESS_SUBSTITUTION)
+# define shellexp(c) ((c) == '$' || (c) == '<' || (c) == '>')
+#else
+# define shellexp(c) ((c) == '$')
+#endif
+
+#if defined (EXTENDED_GLOB)
+# define PATTERN_CHAR(c) \
+ ((c) == '@' || (c) == '*' || (c) == '+' || (c) == '?' || (c) == '!')
+#else
+# define PATTERN_CHAR(c) 0
+#endif
+
+#define GLOB_CHAR(c) \
+ ((c) == '*' || (c) == '?' || (c) == '[' || (c) == ']' || (c) == '^')
+
+#define CTLESC '\001'
+#define CTLNUL '\177'
+
+#endif /* _SYNTAX_H_ */