]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - subst.h
Imported from ../bash-3.2.48.tar.gz.
[thirdparty/bash.git] / subst.h
diff --git a/subst.h b/subst.h
index 33d3f49e421460f64dcab9c40acf154ead99232f..3c3828f5455f6ba938b4ad70dcd9997778ee3abc 100644 (file)
--- a/subst.h
+++ b/subst.h
@@ -135,7 +135,7 @@ extern WORD_LIST *expand_string_unsplit __P((char *, int));
 extern WORD_LIST *expand_string_assignment __P((char *, int));
 
 /* Expand a prompt string. */
-extern WORD_LIST *expand_prompt_string __P((char *, int));
+extern WORD_LIST *expand_prompt_string __P((char *, int, int));
 
 /* Expand STRING just as if you were expanding a word.  This also returns
    a list of words.  Note that filename globbing is *NOT* done for word
@@ -151,9 +151,15 @@ extern char *expand_string_to_string __P((char *, int));
 extern char *expand_string_unsplit_to_string __P((char *, int));
 extern char *expand_assignment_string_to_string __P((char *, int));
 
-/* De-quoted quoted characters in STRING. */
+/* Expand an arithmetic expression string */
+extern char *expand_arith_string __P((char *, int));
+
+/* De-quote quoted characters in STRING. */
 extern char *dequote_string __P((char *));
 
+/* De-quote quoted characters in each word in LIST. */
+extern WORD_LIST *dequote_list __P((WORD_LIST *));
+
 /* Expand WORD, performing word splitting on the result.  This does
    parameter expansion, command substitution, arithmetic expansion,
    word splitting, and quote removal. */
@@ -216,6 +222,7 @@ extern WORD_LIST *expand_words_shellexp __P((WORD_LIST *));
 extern char *command_substitute __P((char *, int));
 extern char *pat_subst __P((char *, char *, char *, int));
 
+extern int fifos_pending __P((void));
 extern void unlink_fifo_list __P((void));
 
 extern WORD_LIST *list_string_with_quotes __P((char *));