Root/package/libs/libiconv/src/include/iconv.h

1#ifndef _ICONV_H
2#define _ICONV_H 1
3
4#define _LIBICONV_VERSION 0x010B /* version number: (major<<8) + minor */
5
6#include <stddef.h>
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12extern int _libiconv_version; /* Likewise */
13
14typedef long iconv_t;
15
16extern iconv_t
17iconv_open(const char *tocode, const char *fromcode);
18
19extern size_t
20iconv(iconv_t cd, char **inbuf, size_t *inbytesleft,
21                  char **outbuf, size_t *outbytesleft);
22
23extern int
24iconv_close(iconv_t cd);
25
26#define libiconv_set_relocation_prefix(...) do {} while(0)
27
28#ifdef __cplusplus
29}
30#endif
31
32#endif /* _ICONV_H */
33

Archive Download this file



interactive