2003-06-18 21:56:13 +02:00
|
|
|
/* utf8conf.h
|
2006-10-02 13:54:35 +02:00
|
|
|
* Copyright (C) 2003, 2006 Free Software Foundation, Inc.
|
2003-06-18 21:56:13 +02:00
|
|
|
*
|
2015-04-24 16:42:28 +02:00
|
|
|
* This file is part of GnuPG.
|
2003-06-18 21:56:13 +02:00
|
|
|
*
|
2017-02-24 13:48:28 +01:00
|
|
|
* GnuPG is free software; you can redistribute and/or modify this
|
|
|
|
* part of GnuPG under the terms of either
|
2011-09-30 12:52:11 +02:00
|
|
|
*
|
|
|
|
* - the GNU Lesser General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or
|
|
|
|
*
|
|
|
|
* - 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.
|
|
|
|
*
|
|
|
|
* or both in parallel, as here.
|
2003-06-18 21:56:13 +02:00
|
|
|
*
|
2015-04-24 16:42:28 +02:00
|
|
|
* GnuPG is distributed in the hope that it will be useful, but
|
2006-10-02 13:54:35 +02:00
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2011-09-30 12:52:11 +02:00
|
|
|
* General Public License for more details.
|
2003-06-18 21:56:13 +02:00
|
|
|
*
|
2011-09-30 12:52:11 +02:00
|
|
|
* You should have received a copies of the GNU General Public License
|
|
|
|
* and the GNU Lesser General Public License along with this program;
|
2016-11-05 12:02:19 +01:00
|
|
|
* if not, see <https://www.gnu.org/licenses/>.
|
2003-06-18 21:56:13 +02:00
|
|
|
*/
|
|
|
|
|
2015-04-24 16:42:28 +02:00
|
|
|
#ifndef GNUPG_COMMON_UTF8CONF_H
|
|
|
|
#define GNUPG_COMMON_UTF8CONF_H
|
2003-06-18 21:56:13 +02:00
|
|
|
|
|
|
|
int set_native_charset (const char *newset);
|
|
|
|
const char *get_native_charset (void);
|
2007-05-04 11:22:18 +02:00
|
|
|
int is_native_utf8 (void);
|
2003-06-18 21:56:13 +02:00
|
|
|
|
|
|
|
char *native_to_utf8 (const char *string);
|
|
|
|
char *utf8_to_native (const char *string, size_t length, int delim);
|
|
|
|
|
|
|
|
|
2007-06-14 19:05:07 +02:00
|
|
|
/* Silly wrappers, required for W32 portability. */
|
|
|
|
typedef void *jnlib_iconv_t;
|
|
|
|
|
|
|
|
jnlib_iconv_t jnlib_iconv_open (const char *tocode, const char *fromcode);
|
|
|
|
size_t jnlib_iconv (jnlib_iconv_t cd, const char **inbuf, size_t *inbytesleft,
|
|
|
|
char **outbuf, size_t *outbytesleft);
|
|
|
|
int jnlib_iconv_close (jnlib_iconv_t cd);
|
|
|
|
|
2010-02-26 19:44:36 +01:00
|
|
|
#ifdef HAVE_W32_SYSTEM
|
2016-01-26 09:53:42 +01:00
|
|
|
char *wchar_to_native (const wchar_t *string);
|
|
|
|
wchar_t *native_to_wchar (const char *string);
|
2010-02-26 19:44:36 +01:00
|
|
|
char *wchar_to_utf8 (const wchar_t *string);
|
|
|
|
wchar_t *utf8_to_wchar (const char *string);
|
|
|
|
#endif /*HAVE_W32_SYSTEM*/
|
2007-06-14 19:05:07 +02:00
|
|
|
|
|
|
|
|
2015-04-24 16:42:28 +02:00
|
|
|
#endif /*GNUPG_COMMON_UTF8CONF_H*/
|