1 /* Character set conversion with error handling and autodetection.
2 Copyright (C) 2002, 2005, 2007-2020 Free Software Foundation, Inc.
3 Written by Bruno Haible.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 #ifndef _STRICONVEHA_H
19 #define _STRICONVEHA_H
32 /* Convert an entire string from one encoding to another, using iconv.
33 The original string is at [SRC,...,SRC+SRCLEN-1].
34 The "from" encoding can also be a name defined for autodetection.
35 If TRANSLITERATE is true, transliteration will attempted to avoid conversion
36 errors, for iconv implementations that support this. Usually you'll choose
37 TRANSLITERATE = true if HANDLER != iconveh_error.
38 If OFFSETS is not NULL, it should point to an array of SRCLEN integers; this
39 array is filled with offsets into the result, i.e. the character starting
40 at SRC[i] corresponds to the character starting at (*RESULTP)[OFFSETS[i]],
41 and other offsets are set to (size_t)(-1).
42 *RESULTP and *LENGTH should initially be a scratch buffer and its size,
43 or *RESULTP can initially be NULL.
44 May erase the contents of the memory at *RESULTP.
45 Return value: 0 if successful, otherwise -1 and errno set.
46 If successful: The resulting string is stored in *RESULTP and its length
47 in *LENGTHP. *RESULTP is set to a freshly allocated memory block, or is
48 unchanged if no dynamic memory allocation was necessary. */
50 mem_iconveha (const char *src
, size_t srclen
,
51 const char *from_codeset
, const char *to_codeset
,
53 enum iconv_ilseq_handler handler
,
55 char **resultp
, size_t *lengthp
);
57 /* Convert an entire string from one encoding to another, using iconv.
58 The original string is the NUL-terminated string starting at SRC.
59 Both the "from" and the "to" encoding must use a single NUL byte at the
60 end of the string (i.e. not UCS-2, UCS-4, UTF-16, UTF-32).
61 The "from" encoding can also be a name defined for autodetection.
62 If TRANSLITERATE is true, transliteration will attempted to avoid conversion
63 errors, for iconv implementations that support this. Usually you'll choose
64 TRANSLITERATE = true if HANDLER != iconveh_error.
65 Allocate a malloced memory block for the result.
66 Return value: the freshly allocated resulting NUL-terminated string if
67 successful, otherwise NULL and errno set. */
69 str_iconveha (const char *src
,
70 const char *from_codeset
, const char *to_codeset
,
72 enum iconv_ilseq_handler handler
);
75 /* In the above, FROM_CODESET can also be one of the following values:
76 "autodetect_utf8" supports ISO-8859-1 and UTF-8
77 "autodetect_jp" supports EUC-JP, ISO-2022-JP-2 and SHIFT_JIS
78 "autodetect_kr" supports EUC-KR and ISO-2022-KR
79 More names can be defined for autodetection. */
81 /* Registers an encoding name for autodetection.
82 TRY_IN_ORDER is a NULL terminated list of encodings to be tried.
83 Returns 0 upon success, or -1 (with errno set) in case of error.
84 Particular errno values: ENOMEM. */
86 uniconv_register_autodetect (const char *name
,
87 const char * const *try_in_order
);
95 #endif /* _STRICONVEHA_H */