Kernel - Kill EDI binding with fire (never completed, and wasn't a good API)
[tpg/acess2.git] / Usermode / Libraries / libiconv.so_src / include_exp / iconv.h
1 /*
2  * Acess2 libiconv
3  * - By John Hodge (thePowersGang)
4  *
5  * iconv.h
6  * - External header
7  */
8 #ifndef _ICONV_H_
9 #define _ICONV_H_
10
11 #include <stddef.h>
12
13 typedef void    *iconv_t;
14
15 extern iconv_t  iconv_open(const char *to, const char *from);
16 extern size_t   iconv(iconv_t cd, const char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft);
17 extern int      iconv_close(iconv_t cd);
18
19 #endif
20

UCC git Repository :: git.ucc.asn.au