iconvh(5)
iconvh --
code set conversion facility
Synopsis
#include <iconv.h>
Description
The <iconv.h> header defines the following data type using typedef:
- iconv_t
-
Identifies the conversion from one code set to another.
The following are declared functions and may also be declared
as macros:
iconv_t iconv_open (const char *tocode, const char *fromcode);
size_t iconv (iconv_t cd, char **inbuf, size_t *inbytesleft,
char **outbuf, size_t *outbytesleft);
int iconv_close (iconv_t cd);
References
iconv(3C),
iconv_close(3C),
iconv_open(3C)
30 January 1998
© 1998 The Santa Cruz Operation, Inc. All rights reserved.