Query: iconvctl
OS: osx
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
ICONVCTL(3) Linux Programmer's Manual ICONVCTL(3)NAMEiconvctl - control iconv behaviorSYNOPSIS#include <iconv.h> int iconvctl (iconv_t cd , int request, void * argument);DESCRIPTIONThe argument cd must be a conversion descriptor created using the function iconv_open. iconvctl queries or adjusts the behavior of the iconv function, when invoked with the specified conversion descriptor, depending on the request value.REQUEST VALUESThe following are permissible values for the request parameter. ICONV_TRIVIALP argument should be an int * which will receive 1 if the conversion is trivial, or 0 otherwise. ICONV_GET_TRANSLITERATE argument should be an int * which will receive 1 if transliteration is enabled in the conversion, or 0 otherwise. ICONV_SET_TRANSLITERATE argument should be a const int *, pointing to an int value. A non-zero value is used to enable transliteration in the conversion. A zero value disables it. ICONV_GET_DISCARD_ILSEQ argument should be an int * which will receive 1 if "illegal sequence discard and continue" is enabled in the conversion, or 0 oth- erwise. ICONV_SET_DISCARD_ILSEQ argument should be a const int *, pointing to an int value. A non-zero value is used to enable "illegal sequence discard and con- tinue" in the conversion. A zero value disables it.RETURN VALUEThe iconvctl function returns 0 if it succeeds. In case of error, it sets errno and returns -1.ERRORSThe following errors can occur, among others: EINVAL The request is invalid.CONFORMING TOThis function is implemented only in GNU libiconv and not in other iconv implementations. It is not backed by a standard. You can test for its presence through (_LIBICONV_VERSION >= 0x0108).SEE ALSOiconv_open(3), iconv(3)GNUFebruary 2, 2004 ICONVCTL(3)
Related Man Pages |
---|
iconv(3) - mojave |
iconvctl(3) - mojave |
iconv(3) - x11r4 |
iconv(3) - osx |
iconvctl(3) - freebsd |
Similar Topics in the Unix Linux Community |
---|
libiconv-1.13.1 error |