| 1234567891011121314151617181920212223242526272829303132 | #ifndef _ICONV_H#define _ICONV_H 1#define _LIBICONV_VERSION 0x010B    /* version number: (major<<8) + minor */#include <stddef.h>#ifdef __cplusplusextern "C" {#endifextern int _libiconv_version; /* Likewise */typedef long iconv_t;extern iconv_ticonv_open(const char *tocode, const char *fromcode);extern size_ticonv(iconv_t cd, char **inbuf, size_t *inbytesleft,                  char **outbuf, size_t *outbytesleft);extern inticonv_close(iconv_t cd);#define libiconv_set_relocation_prefix(...) do {} while(0)#ifdef __cplusplus}#endif#endif /* _ICONV_H */
 |