X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fstriconveha.h;h=9c4c676f3fb2452d62808c1021789d17176f4bc0;hb=a3a70ebafd7f2fdc069d43e8a26fc246dd7fe5bb;hp=2798f53f468139898ea9883d64e580452967ec51;hpb=43ec2bd667a8f6c6d40457a6e6c6340a2d214d66;p=gnulib.git diff --git a/lib/striconveha.h b/lib/striconveha.h index 2798f53f4..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,6 +32,9 @@ 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 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]], @@ -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);