123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #include <config.h>
- #include <iconv.h>
- #include <stdint.h>
- #ifndef uintptr_t
- # define uintptr_t unsigned long
- #endif
- int
- rpl_iconv_close (iconv_t cd)
- #undef iconv_close
- {
- #if REPLACE_ICONV_UTF
- switch ((uintptr_t) cd)
- {
- case (uintptr_t) _ICONV_UTF8_UTF16BE:
- case (uintptr_t) _ICONV_UTF8_UTF16LE:
- case (uintptr_t) _ICONV_UTF8_UTF32BE:
- case (uintptr_t) _ICONV_UTF8_UTF32LE:
- case (uintptr_t) _ICONV_UTF16BE_UTF8:
- case (uintptr_t) _ICONV_UTF16LE_UTF8:
- case (uintptr_t) _ICONV_UTF32BE_UTF8:
- case (uintptr_t) _ICONV_UTF32LE_UTF8:
- return 0;
- }
- #endif
- return iconv_close (cd);
- }
|