diff options
author | Eric Christopher <echristo@gcc.gnu.org> | 2004-02-12 02:25:03 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gcc.gnu.org> | 2004-02-12 02:25:03 +0000 |
commit | 423e95e2042989aa21da2f47e67a657480eb38d5 (patch) | |
tree | 078b988fdbe26329da42a06d493915188710af26 /gcc/cpplib.h | |
parent | 1c86f39d32b95fe9de306d82f02a982bbad778b4 (diff) | |
download | gcc-423e95e2042989aa21da2f47e67a657480eb38d5.zip gcc-423e95e2042989aa21da2f47e67a657480eb38d5.tar.gz gcc-423e95e2042989aa21da2f47e67a657480eb38d5.tar.bz2 |
cppcharset.c (_cpp_interpret_string_notranslate): Rename and duplicate argument structure of cpp_interpret_string.
2004-02-11 Eric Christopher <echristo@redhat.com>
* cppcharset.c (_cpp_interpret_string_notranslate): Rename and
duplicate argument structure of cpp_interpret_string.
* cpphash.h: Move prototype...
* cpplib.h: Here.
* cpplib.c: Fix calls to match new function signature.
From-SVN: r77688
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 1183821..dbbf85b 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -581,6 +581,9 @@ extern cppchar_t cpp_interpret_charconst (cpp_reader *, const cpp_token *, extern bool cpp_interpret_string (cpp_reader *, const cpp_string *, size_t, cpp_string *, bool); +extern bool cpp_interpret_string_notranslate (cpp_reader *, + const cpp_string *, size_t, + cpp_string *, bool); /* Used to register macros and assertions, perhaps from the command line. The text is the same as the command line argument. */ |