]> git.ipfire.org Git - thirdparty/bash.git/blame - subst.h
Imported from ../bash-2.04.tar.gz.
[thirdparty/bash.git] / subst.h
CommitLineData
726f6388
JA
1/* subst.h -- Names of externally visible functions in subst.c. */
2
3/* Copyright (C) 1993 Free Software Foundation, Inc.
4
5 This file is part of GNU Bash, the Bourne Again SHell.
6
7 Bash is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Bash is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License along
18 with Bash; see the file COPYING. If not, write to the Free Software
bb70624e 19 Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
726f6388
JA
20
21#if !defined (_SUBST_H_)
22#define _SUBST_H_
23
24#include "stdc.h"
25
26/* Cons a new string from STRING starting at START and ending at END,
27 not including END. */
28extern char *substring __P((char *, int, int));
29
30/* Remove backslashes which are quoting backquotes from STRING. Modifies
31 STRING, and returns a pointer to it. */
32extern char * de_backslash __P((char *));
33
34/* Replace instances of \! in a string with !. */
35extern void unquote_bang __P((char *));
36
37/* Extract the $( construct in STRING, and return a new string.
38 Start extracting at (SINDEX) as if we had just seen "$(".
39 Make (SINDEX) get the position just after the matching ")". */
40extern char *extract_command_subst __P((char *, int *));
41
42/* Extract the $[ construct in STRING, and return a new string.
43 Start extracting at (SINDEX) as if we had just seen "$[".
44 Make (SINDEX) get the position just after the matching "]". */
45extern char *extract_arithmetic_subst __P((char *, int *));
46
47#if defined (PROCESS_SUBSTITUTION)
48/* Extract the <( or >( construct in STRING, and return a new string.
49 Start extracting at (SINDEX) as if we had just seen "<(".
50 Make (SINDEX) get the position just after the matching ")". */
51extern char *extract_process_subst __P((char *, char *, int *));
52#endif /* PROCESS_SUBSTITUTION */
53
54/* Extract the name of the variable to bind to from the assignment string. */
55extern char *assignment_name __P((char *));
56
57/* Return a single string of all the words present in LIST, separating
58 each word with a space. */
59extern char *string_list __P((WORD_LIST *));
60
726f6388
JA
61/* Perform quoted null character removal on each element of LIST.
62 This modifies LIST. */
63extern void word_list_remove_quoted_nulls __P((WORD_LIST *));
64
65/* This performs word splitting and quoted null character removal on
66 STRING. */
67extern WORD_LIST *list_string __P((char *, char *, int));
68
69extern char *get_word_from_string __P((char **, char *, char **));
70extern char *strip_trailing_ifs_whitespace __P((char *, char *, int));
71
72/* Given STRING, an assignment string, get the value of the right side
73 of the `=', and bind it to the left side. If EXPAND is true, then
74 perform parameter expansion, command substitution, and arithmetic
75 expansion on the right-hand side. Perform tilde expansion in any
76 case. Do not perform word splitting on the result of expansion. */
77extern int do_assignment __P((char *));
78extern int do_assignment_no_expand __P((char *));
79
ccc6cda3
JA
80#if defined (ARRAY_VARS)
81extern SHELL_VAR *do_array_element_assignment __P((char *, char *));
82#endif
83
726f6388
JA
84/* Append SOURCE to TARGET at INDEX. SIZE is the current amount
85 of space allocated to TARGET. SOURCE can be NULL, in which
86 case nothing happens. Gets rid of SOURCE by free ()ing it.
87 Returns TARGET in case the location has changed. */
88extern char *sub_append_string __P((char *, char *, int *, int *));
89
90/* Append the textual representation of NUMBER to TARGET.
91 INDEX and SIZE are as in SUB_APPEND_STRING. */
92extern char *sub_append_number __P((int, char *, int *, int *));
93
94/* Return the word list that corresponds to `$*'. */
95extern WORD_LIST *list_rest_of_args __P((void));
96
97/* Make a single large string out of the dollar digit variables,
98 and the rest_of_args. If DOLLAR_STAR is 1, then obey the special
99 case of "$*" with respect to IFS. */
100extern char *string_rest_of_args __P((int));
101
ccc6cda3
JA
102extern int number_of_args __P((void));
103
726f6388
JA
104/* Expand STRING by performing parameter expansion, command substitution,
105 and arithmetic expansion. Dequote the resulting WORD_LIST before
106 returning it, but do not perform word splitting. The call to
107 remove_quoted_nulls () is in here because word splitting normally
108 takes care of quote removal. */
109extern WORD_LIST *expand_string_unsplit __P((char *, int));
110
bb70624e
JA
111/* Expand a prompt string. */
112extern WORD_LIST *expand_prompt_string __P((char *, int));
113
726f6388
JA
114/* Expand STRING just as if you were expanding a word. This also returns
115 a list of words. Note that filename globbing is *NOT* done for word
116 or string expansion, just when the shell is expanding a command. This
117 does parameter expansion, command substitution, arithmetic expansion,
118 and word splitting. Dequote the resultant WORD_LIST before returning. */
119extern WORD_LIST *expand_string __P((char *, int));
120
121/* De-quoted quoted characters in STRING. */
122extern char *dequote_string __P((char *));
123
124/* Expand WORD, performing word splitting on the result. This does
125 parameter expansion, command substitution, arithmetic expansion,
126 word splitting, and quote removal. */
127extern WORD_LIST *expand_word __P((WORD_DESC *, int));
128
129/* Expand WORD, but do not perform word splitting on the result. This
130 does parameter expansion, command substitution, arithmetic expansion,
131 and quote removal. */
132extern WORD_LIST *expand_word_no_split __P((WORD_DESC *, int));
133extern WORD_LIST *expand_word_leave_quoted __P((WORD_DESC *, int));
134
135/* Return the value of a positional parameter. This handles values > 10. */
136extern char *get_dollar_var_value __P((int));
137
ccc6cda3
JA
138/* Quote a string to protect it from word splitting. */
139extern char *quote_string __P((char *));
140
726f6388
JA
141/* Perform quote removal on STRING. If QUOTED > 0, assume we are obeying the
142 backslash quoting rules for within double quotes. */
143extern char *string_quote_removal __P((char *, int));
144
145/* Perform quote removal on word WORD. This allocates and returns a new
146 WORD_DESC *. */
147extern WORD_DESC *word_quote_removal __P((WORD_DESC *, int));
148
149/* Perform quote removal on all words in LIST. If QUOTED is non-zero,
150 the members of the list are treated as if they are surrounded by
151 double quotes. Return a new list, or NULL if LIST is NULL. */
152extern WORD_LIST *word_list_quote_removal __P((WORD_LIST *, int));
153
154/* This splits a single word into a WORD LIST on $IFS, but only if the word
155 is not quoted. list_string () performs quote removal for us, even if we
156 don't do any splitting. */
157extern WORD_LIST *word_split __P((WORD_DESC *));
158
159/* Take the list of words in LIST and do the various substitutions. Return
160 a new list of words which is the expanded list, and without things like
161 variable assignments. */
162extern WORD_LIST *expand_words __P((WORD_LIST *));
163
164/* Same as expand_words (), but doesn't hack variable or environment
165 variables. */
166extern WORD_LIST *expand_words_no_vars __P((WORD_LIST *));
167
cce855bc
JA
168/* Perform the `normal shell expansions' on a WORD_LIST. These are
169 brace expansion, tilde expansion, parameter and variable substitution,
170 command substitution, arithmetic expansion, and word splitting. */
171extern WORD_LIST *expand_words_shellexp __P((WORD_LIST *));
726f6388 172
bb70624e 173extern char *command_substitute __P((char *, int));
ccc6cda3
JA
174extern char *pat_subst __P((char *, char *, char *, int));
175
176extern void unlink_fifo_list __P((void));
177
bb70624e
JA
178extern WORD_LIST *list_string_with_quotes __P((char *));
179
ccc6cda3
JA
180#if defined (ARRAY_VARS)
181extern int array_expand_index __P((char *, int));
182extern int valid_array_reference __P((char *));
183extern char *get_array_value __P((char *, int));
184extern SHELL_VAR *array_variable_part __P((char *, char **, int *));
ccc6cda3
JA
185extern char *extract_array_assignment_list __P((char *, int *));
186#endif
187
cce855bc
JA
188#if defined (COND_COMMAND)
189extern char *remove_backslashes __P((char *));
190extern char *cond_expand_word __P((WORD_DESC *, int));
ccc6cda3
JA
191#endif
192
bb70624e
JA
193#if defined (READLINE)
194extern int char_is_quoted __P((char *, int));
195extern int unclosed_pair __P((char *, int, char *));
196extern int skip_to_delim __P((char *, int, char *));
197extern WORD_LIST *split_at_delims __P((char *, int, char *, int, int *, int *));
198#endif
199
ccc6cda3
JA
200/* How to determine the quoted state of the character C. */
201#define QUOTED_CHAR(c) ((c) == CTLESC)
202
203/* Is the first character of STRING a quoted NULL character? */
204#define QUOTED_NULL(string) ((string)[0] == CTLNUL && (string)[1] == '\0')
205
726f6388 206#endif /* !_SUBST_H_ */