diff options
Diffstat (limited to 'subst.h')
-rw-r--r-- | subst.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,6 @@ /* subst.h -- Names of externally visible functions in subst.c. */ -/* Copyright (C) 1993-2004 Free Software Foundation, Inc. +/* Copyright (C) 1993-2007 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. @@ -181,6 +181,9 @@ extern char *quote_string __P((char *)); in a string. */ extern char *quote_escapes __P((char *)); +/* And remove such quoted special characters. */ +extern char *remove_quoted_escapes __P((char *)); + /* Perform quote removal on STRING. If QUOTED > 0, assume we are obeying the backslash quoting rules for within double quotes. */ extern char *string_quote_removal __P((char *, int)); |