NAME

iconv.h - codeset conversion facility

SYNOPSIS

#include <iconv.h>

DESCRIPTION

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);

APPLICATION USAGE

None.

FUTURE DIRECTIONS

None.

SEE ALSO

iconv_open(), iconv(), iconv_close(), iconv utility.