X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fstriconveha.h;h=9c4c676f3fb2452d62808c1021789d17176f4bc0;hb=9fbb5dcb459bf25d5e7b89fc209359e1a61a5214;hp=b4d7ce496d261248f9c984d0385912b2ce7ca007;hpb=6d6f8a5cd56ca54a9e9d49516cd2e849f8a6b1c6;p=gnulib.git diff --git a/lib/striconveha.h b/lib/striconveha.h index b4d7ce496..9c4c676f3 100644 --- a/lib/striconveha.h +++ b/lib/striconveha.h @@ -19,6 +19,8 @@ #ifndef _STRICONVEHA_H #define _STRICONVEHA_H +#include + #include "striconveh.h" @@ -30,7 +32,10 @@ extern "C" { /* Convert an entire string from one encoding to another, using iconv. The original string is at [SRC,...,SRC+SRCLEN-1]. The "from" encoding can also be a name defined for autodetection. - If OFFSET is not NULL, it should point to an array of SRCLEN integers; this + If TRANSLITERATE is true, transliteration will attempted to avoid conversion + errors, for iconv implementations that support this. Usually you'll choose + TRANSLITERATE = true if HANDLER != iconveh_error. + If OFFSETS is not NULL, it should point to an array of SRCLEN integers; this array is filled with offsets into the result, i.e. the character starting at SRC[i] corresponds to the character starting at (*RESULTP)[OFFSETS[i]], and other offsets are set to (size_t)(-1). @@ -44,6 +49,7 @@ extern "C" { extern int mem_iconveha (const char *src, size_t srclen, const char *from_codeset, const char *to_codeset, + bool transliterate, enum iconv_ilseq_handler handler, size_t *offsets, char **resultp, size_t *lengthp); @@ -53,12 +59,16 @@ extern int Both the "from" and the "to" encoding must use a single NUL byte at the end of the string (i.e. not UCS-2, UCS-4, UTF-16, UTF-32). The "from" encoding can also be a name defined for autodetection. + If TRANSLITERATE is true, transliteration will attempted to avoid conversion + errors, for iconv implementations that support this. Usually you'll choose + TRANSLITERATE = true if HANDLER != iconveh_error. Allocate a malloced memory block for the result. Return value: the freshly allocated resulting NUL-terminated string if successful, otherwise NULL and errno set. */ extern char * str_iconveha (const char *src, const char *from_codeset, const char *to_codeset, + bool transliterate, enum iconv_ilseq_handler handler);