*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->Linux man pages -> iconv (3)              
Title
Content
Arch
Section
 

ICONV(3)

Contents


NAME    [Toc]    [Back]

       iconv - perform character set conversion

SYNOPSIS    [Toc]    [Back]

       #include <iconv.h>

       size_t iconv (iconv_t cd,
		     char* * inbuf, size_t * inbytesleft,
		     char* * outbuf, size_t * outbytesleft);

DESCRIPTION    [Toc]    [Back]

       The argument cd must be a conversion descriptor created using the function
 iconv_open.

       The main case is when inbuf is not NULL and *inbuf  is  not  NULL.   In
       this  case, the iconv function converts the multibyte sequence starting
       at *inbuf to  a	multibyte  sequence  starting  at  *outbuf.   At  most
       *inbytesleft  bytes,  starting  at *inbuf, will be read.  At most *out-
       bytesleft bytes, starting at *outbuf, will be written.

       The iconv function converts one multibyte character at a time, and  for
       each   character   conversion   it  increments  *inbuf  and  decrements
       *inbytesleft by the number of  converted  input	bytes,	it  increments
       *outbuf	and decrements *outbytesleft by the number of converted output
       bytes, and it updates the conversion state contained in cd.   The  conversion
 can stop for four reasons:

       1.  An  invalid multibyte sequence is encountered in the input. In this
       case it sets errno to EILSEQ and returns (size_t)(-1). *inbuf  is  left
       pointing to the beginning of the invalid multibyte sequence.

       2.   The   input  byte  sequence  has  been  entirely  converted,  i.e.
       *inbytesleft has gone down to 0. In this case iconv returns the	number
       of non-reversible conversions performed during this call.

       3.  An  incomplete  multibyte sequence is encountered in the input, and
       the input byte sequence terminates after it. In this case it sets errno
       to  EINVAL  and	returns  (size_t)(-1).	*inbuf is left pointing to the
       beginning of the incomplete multibyte sequence.

       4. The output buffer has no more room for the next converted character.
       In this case it sets errno to E2BIG and returns (size_t)(-1).

       A different case is when inbuf is NULL or *inbuf is NULL, but outbuf is
       not NULL and *outbuf is not NULL. In  this  case,  the  iconv  function
       attempts  to set cd's conversion state to the initial state and store a
       corresponding shift sequence at *outbuf.  At most *outbytesleft	bytes,
       starting at *outbuf, will be written.  If the output buffer has no more
       room for this reset sequence,  it  sets	errno  to  E2BIG  and  returns
       (size_t)(-1).  Otherwise  it  increments  *outbuf  and decrements *out-
       bytesleft by the number of bytes written.

       A third case is when inbuf is NULL or *inbuf is	NULL,  and  outbuf  is
       NULL  or  *outbuf  is  NULL. In this case, the iconv function sets cd's
       conversion state to the initial state.

RETURN VALUE    [Toc]    [Back]

       The iconv function returns the number of characters converted in a nonreversible
  way	during	this  call;  reversible  conversions  are  not
       counted.  In case of error, it sets errno and returns (iconv_t)(-1).

ERRORS    [Toc]    [Back]

       The following errors can occur, among others:

       E2BIG  There is not sufficient room at *outbuf.

       EILSEQ An invalid multibyte sequence has been encountered in the input.

       EINVAL An  incomplete  multibyte  sequence  has been encountered in the
	      input.

CONFORMING TO    [Toc]    [Back]

       UNIX98

SEE ALSO    [Toc]    [Back]

      
      
       iconv_open(3), iconv_close(3)



GNU				  2000-11-18			      ICONV(3)
[ Back ]
 Similar pages
Name OS Title
aifcresample IRIX perform sampling rate conversion on an AIFF-C file
iconv_close Linux deallocate descriptor for character set conversion
iconv_open Linux allocate descriptor for character set conversion
vwscanf FreeBSD wide character input format conversion
vwprintf FreeBSD formatted wide character output conversion
vfwprintf FreeBSD formatted wide character output conversion
wprintf Linux formatted wide character output conversion
vswscanf FreeBSD wide character input format conversion
chrtbl IRIX generate character classification and conversion tables
fwscanf FreeBSD wide character input format conversion
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service