GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
ICONVCTL(3) Linux Programmer's Manual ICONVCTL(3)

iconvctl - control iconv behavior

#include <iconv.h>

int iconvctl (iconv_t cd , int request, void * argument);

The 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.

The following are permissible values for the request parameter.

argument should be an int * which will receive 1 if the conversion is trivial, or 0 otherwise.
argument should be an int * which will receive 1 if transliteration is enabled in the conversion, or 0 otherwise.
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.
argument should be an int * which will receive 1 if "illegal sequence discard and continue" is enabled in the conversion, or 0 otherwise.
argument should be a const int *, pointing to an int value. A non-zero value is used to enable "illegal sequence discard and continue" in the conversion. A zero value disables it.

The iconvctl function returns 0 if it succeeds. In case of error, it sets errno and returns -1.

The following errors can occur, among others:

The request is invalid.

This 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).

iconv_open(3) iconv(3)

March 31, 2007 GNU

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.