diff options
author | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2005-07-14 08:45:46 +0000 |
---|---|---|
committer | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2005-07-14 08:45:46 +0000 |
commit | f15620c372b8813a87d07eee169cf2096c99c173 (patch) | |
tree | f1c59f41d4a9c9f5f45595695327b0e4a74b1408 /src/rcciconv.h | |
parent | 7233ff9095194b38586ce438379f08691a0fecdd (diff) | |
download | librcc-f15620c372b8813a87d07eee169cf2096c99c173.tar.gz librcc-f15620c372b8813a87d07eee169cf2096c99c173.tar.bz2 librcc-f15620c372b8813a87d07eee169cf2096c99c173.tar.xz librcc-f15620c372b8813a87d07eee169cf2096c99c173.zip |
IConv and DB4
Diffstat (limited to 'src/rcciconv.h')
-rw-r--r-- | src/rcciconv.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rcciconv.h b/src/rcciconv.h index 4a8fc78..cc1d1b9 100644 --- a/src/rcciconv.h +++ b/src/rcciconv.h @@ -1,11 +1,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, iconv_t icnv, const char *buf, size_t len); +size_t rccIConv(rcc_context ctx, rcc_iconv icnv, const char *buf, size_t len); #endif /* _RCC_ICONV_H */ |