iconv.h - codeset conversion facility
[XSI] #include <iconv.h>
The <iconv.h> header shall define the following type:
- iconv_t
- Identifies the conversion from one codeset to another.
The following shall be declared as functions and may also be defined as macros. Function prototypes shall be provided.
iconv_t iconv_open(const char *, const char *); size_t iconv(iconv_t, char **restrict, size_t *restrict, char **restrict, size_t *restrict); int iconv_close(iconv_t);
None.
None.
None.
The System Interfaces volume of IEEE Std 1003.1-2001, iconv(), iconv_close(), iconv_open()
First released in Issue 4.
The restrict keyword is added to the prototype for iconv().