Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
a local clone.
core.sys.posix.iconv
D binding for the POSIX iconv library.
Defines external functions required to use iconv codeset conversion
function.
iconv_open(3) Allocates the descriptor for code conversion
iconv(3) Performs the conversion
iconvctl(3) Control iconv behavior
iconv_close(3) Deallocates allocated resources
License:
Authors:
Nemanja Boric
Standards:
POSIX.1-2001, POSIX.1-2008
- nothrow @nogc iconv_t
iconv_open
(scope const char*tocode
, scope const char*fromcode
); - Allocate descriptor for code conversion from codeset FROMCODE to codeset TOCODE.
- nothrow @nogc size_t
iconv
(iconv_tcd
, scope const char**inbuf
, size_t*inbytesleft
, char**outbuf
, size_t*outbytesleft
); - Convert at most *INBYTESLEFT bytes from *INBUF according to the code conversion algorithm specified by CD and place up to *OUTBYTESLEFT bytes in buffer at *OUTBUF.
- nothrow @nogc int
iconvctl
(iconv_tcd
, intrequest
, void*argument
); - iconvctl queries or adjusts the behavior of the iconv function, when invoked with the specified conversion descriptor, depending on the request value.
- nothrow @nogc int
iconv_close
(iconv_tcd
); - Free resources allocated for descriptor CD for code conversion.
Copyright © 1999-2025 by the D Language Foundation | Page generated by
Ddoc on Mon Apr 28 14:16:52 2025