22 lines
457 B
C
Raw Normal View History

#ifndef _ICONV_H
#define _ICONV_H 1
#include <stddef.h>
#define _LIBICONV_VERSION 0x010B /* version number: (major<<8) + minor */
extern int _libiconv_version; /* Likewise */
typedef long iconv_t;
extern iconv_t
iconv_open(const char *tocode, const char *fromcode);
extern size_t
iconv(iconv_t cd, char **inbuf, size_t *inbytesleft,
char **outbuf, size_t *outbytesleft);
extern int
iconv_close(iconv_t cd);
#endif /* _ICONV_H */