
git-svn-id: svn://svn.openwrt.org/openwrt/packages@24870 3c298f89-4303-0410-b956-a3cf2f4a3e73
22 lines
457 B
C
22 lines
457 B
C
#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 */
|