blob: 05523e1595f279b8dab8e294c2a5d498139b6c31 (
plain) (
blame)
1
2
3
4
5
6
7
|
#if !defined ISO && !defined POSIX
type iconv_t
function iconv_t iconv_open (const char*, const char*)
function size_t iconv (iconv_t, char**, size_t*, char**, size_t*)
function int iconv_close (iconv_t)
#endif
|