diff options
author | Jan Hubicka <hubicka@ucw.cz> | 2014-09-22 21:43:02 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2014-09-22 19:43:02 +0000 |
commit | d87fc699839f068bc14ea189bc2aba4afc986a9c (patch) | |
tree | 4074fda1286150a47a6347d1bca396e0db171454 /libcpp/charset.c | |
parent | 46842bfe9c5fb7f609917cad8d3ec8cc5ff30bea (diff) | |
download | gcc-d87fc699839f068bc14ea189bc2aba4afc986a9c.zip gcc-d87fc699839f068bc14ea189bc2aba4afc986a9c.tar.gz gcc-d87fc699839f068bc14ea189bc2aba4afc986a9c.tar.bz2 |
charset.c (conversion): Rename to ...
* charset.c (conversion): Rename to ...
(cpp_conversion): ... this one; update.
* files.c (file_hash_entry): Rename to ...
(cpp_file_hash_entry): ... this one ; update.
From-SVN: r215482
Diffstat (limited to 'libcpp/charset.c')
-rw-r--r-- | libcpp/charset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcpp/charset.c b/libcpp/charset.c index 07a594d..b766eec 100644 --- a/libcpp/charset.c +++ b/libcpp/charset.c @@ -608,13 +608,13 @@ convert_using_iconv (iconv_t cd, const uchar *from, size_t flen, #define APPLY_CONVERSION(CONVERTER, FROM, FLEN, TO) \ CONVERTER.func (CONVERTER.cd, FROM, FLEN, TO) -struct conversion +struct cpp_conversion { const char *pair; convert_f func; iconv_t fake_cd; }; -static const struct conversion conversion_tab[] = { +static const struct cpp_conversion conversion_tab[] = { { "UTF-8/UTF-32LE", convert_utf8_utf32, (iconv_t)0 }, { "UTF-8/UTF-32BE", convert_utf8_utf32, (iconv_t)1 }, { "UTF-8/UTF-16LE", convert_utf8_utf16, (iconv_t)0 }, |