8d1f745268072caa59b1eb235cf3d765bdc14bf2
[packages.git] / libs / libiconv / src / include / iconv.h
1 /*
2  * Very simple iconv api stub.
3  */
4
5 #ifndef _ICONV_H
6 #define _ICONV_H 1
7
8 typedef void *iconv_t;
9
10 extern iconv_t
11 iconv_open(const char *tocode, const char *fromcode);
12
13 extern size_t
14 iconv(iconv_t cd, char **inbuf, size_t *inbytesleft,
15                   char **outbuf, size_t *outbytesleft);
16
17 extern int
18 iconv_close(iconv_t cd);
19
20 #endif /* _ICONV_H */