CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: iconv api in C

  1. #1
    Join Date
    May 2005
    Posts
    112

    iconv api in C

    hello.
    is is possible to get the source code for the iconv() API in C
    im trying to determine cases where errors arise and what they mean.
    for example I have some spurious error where iconv complains about "No such file or directory"

    im guessing its related to input or output buffers but I would like to try double check against the code of this standard api.

    any thoughts appreciated.

    thank you.

  2. #2
    Join Date
    Apr 2008
    Posts
    118

    Re: iconv api in C

    Here's the GNU version:

    http://www.gnu.org/software/libiconv/

    Here's the download link to the latest version there:

    http://ftp.gnu.org/pub/gnu/libiconv/...-1.13.1.tar.gz

    Be aware that whilst the API is standardised, the implementation is of course not. Your implementation may or may not have the source code freely available.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured