X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=gedcom%2Fencoding.h;h=d4bd632d9aaeef6800f51da8321429bf63f61b84;hb=dc8ddccc569803b5cbe00d7fa2fa53d13ada9b60;hp=1a9e79c65c3da9ec2a7cad810e0fce93c0784706;hpb=8093e53a57e174b019f07760f5bf815271ceee9b;p=gedcom-parse.git diff --git a/gedcom/encoding.h b/gedcom/encoding.h index 1a9e79c..d4bd632 100644 --- a/gedcom/encoding.h +++ b/gedcom/encoding.h @@ -1,11 +1,22 @@ -/* This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * +/* Header file for encoding.c. + Copyright (C) 2001 The Genes Development Team + This file is part of the Gedcom parser library. + Contributed by Peter Verthez , 2001. - (C) 2001 by The Genes Development Team - Original author: Peter Verthez (Peter.Verthez@advalvas.be) -*/ + The Gedcom parser 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$ */ @@ -20,15 +31,12 @@ typedef enum _ENC { TWO_BYTE_LOHI = 2 } ENCODING; -/* All Unicode characters between U+0000 and U+FFFF can be encoded in - UTF-8 with 3 or less bytes */ -#define UTF_FACTOR 3 - -int open_conv_to_internal(char* fromcode); +int open_conv_to_internal(const char* fromcode); void close_conv_to_internal(); -char* to_internal(char* str, size_t len, +char* to_internal(const char* str, size_t len, char* output_buffer, size_t out_len); void init_encodings(); void set_encoding_width(ENCODING enc); +void update_gconv_search_path(); #endif /* __ENCODING_H */