X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=utf8%2Futf8-convert.c;h=9dbfaf50e8b15d1ca03613e458faa07ca0913f01;hb=18ff02c2f0dff12904dbd2dc4d6c40ef3ad4a6d2;hp=097f199a35a6c4448d03dfe7892899f4ad13bcb3;hpb=8535a64e18dcc9b7cefb6d7d7e53de3cee58641e;p=gedcom-parse.git diff --git a/utf8/utf8-convert.c b/utf8/utf8-convert.c index 097f199..9dbfaf5 100644 --- a/utf8/utf8-convert.c +++ b/utf8/utf8-convert.c @@ -1,15 +1,26 @@ /* Encoding utility from UTF-8 to another charset and vice versa Copyright (C) 2001, 2002 Peter Verthez - Permission granted to do anything with this file that you want, as long - as the above copyright is retained in all copies. - THERE IS NO WARRANTY - USE AT YOUR OWN RISK + The UTF8 tools library is free software; you can redistribute it + and/or modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The Gedcom parser library is distributed in the hope that it will be + useful, but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the Gedcom parser library; if not, write to the + Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA. */ /* $Id$ */ /* $Name$ */ -#include "utf8.h" +#include "utf8tools.h" #include #include #include @@ -187,7 +198,8 @@ void cleanup_utf8_conversion(convert_t conv) } } -char* convert_from_utf8(convert_t conv, const char* input, int* conv_fails) +char* convert_from_utf8(convert_t conv, const char* input, int* conv_fails, + size_t* output_len) { size_t insize = strlen(input); size_t outsize; @@ -246,12 +258,12 @@ char* convert_from_utf8(convert_t conv, const char* input, int* conv_fails) } nconv = iconv(conv->from_utf8, &inptr, &insize, &outptr, &outsize); } + if (output_len) *output_len = outptr - outbuf->buffer; return outbuf->buffer; } -char* convert_to_utf8(convert_t conv, const char* input) +char* convert_to_utf8(convert_t conv, const char* input, size_t input_len) { - size_t insize = strlen(input); size_t outsize; ICONV_CONST char *inptr = (ICONV_CONST char*) input; char *outptr; @@ -267,7 +279,7 @@ char* convert_to_utf8(convert_t conv, const char* input) outptr = outbuf->buffer; outsize = outbuf->size; reset_conv_buffer(conv->outbuf); - nconv = iconv(conv->to_utf8, &inptr, &insize, &outptr, &outsize); + nconv = iconv(conv->to_utf8, &inptr, &input_len, &outptr, &outsize); while (nconv == (size_t)-1) { if (errno == E2BIG) { /* grow the output buffer */ @@ -286,7 +298,7 @@ char* convert_to_utf8(convert_t conv, const char* input) /* EBADF is an error which should be captured by the first if above */ return NULL; } - nconv = iconv(conv->to_utf8, &inptr, &insize, &outptr, &outsize); + nconv = iconv(conv->to_utf8, &inptr, &input_len, &outptr, &outsize); } return outbuf->buffer; }