iconv.h - codeset conversion facility
#include <iconv.h>
The <iconv.h> header defines the following data type through typedef:
- iconv_t
- Identifies the conversion from one codeset to another.
The following are declared as functions and may also be declared as macros. Function prototypes must be provided for use with an ISO C compiler.
iconv_t iconv_open(const char *, const char *); size_t iconv(iconv_t, char **, size_t *, char **, size_t *); int iconv_close(iconv_t);
None.
None.
iconv_open(), iconv(), iconv_close().