1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef _RCC_ICONV_H #define _RCC_ICONV_H #include <iconv.h> struct rcc_iconv_t { iconv_t icnv; }; typedef struct rcc_iconv_t rcc_iconv_s; size_t rccIConv(rcc_context ctx, rcc_iconv icnv, const char *buf, size_t len); #endif /* _RCC_ICONV_H */