gnupg/common/utf8conv.h

46 lines
1.5 KiB
C
Raw Normal View History

/* utf8conf.h
2006-10-02 13:54:35 +02:00
* Copyright (C) 2003, 2006 Free Software Foundation, Inc.
*
2006-10-02 13:54:35 +02:00
* This file is part of JNLIB.
*
2006-10-02 13:54:35 +02:00
* JNLIB is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
2007-07-04 21:49:40 +02:00
* published by the Free Software Foundation; either version 3 of
2006-10-02 13:54:35 +02:00
* the License, or (at your option) any later version.
*
2006-10-02 13:54:35 +02:00
* JNLIB 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.
*
2006-10-02 13:54:35 +02:00
* You should have received a copy of the GNU Lesser General Public
2007-07-04 21:49:40 +02:00
* License along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LIBJNLIB_UTF8CONF_H
#define LIBJNLIB_UTF8CONF_H
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);
char *native_to_utf8 (const char *string);
char *utf8_to_native (const char *string, size_t length, int delim);
/* 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);
#ifdef HAVE_W32_SYSTEM
char *wchar_to_utf8 (const wchar_t *string);
wchar_t *utf8_to_wchar (const char *string);
#endif /*HAVE_W32_SYSTEM*/
#endif /*LIBJNLIB_UTF8CONF_H*/