mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33710 3c298f89-4303-0410-b956-a3cf2f4a3e73
33 lines
587 B
C
33 lines
587 B
C
#ifndef _ICONV_H
|
|
#define _ICONV_H 1
|
|
|
|
#define _LIBICONV_VERSION 0x010B /* version number: (major<<8) + minor */
|
|
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
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);
|
|
|
|
#define libiconv_set_relocation_prefix(...) do {} while(0)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _ICONV_H */
|