Initialize the gmime for upstream
[platform/upstream/gmime.git] / gmime / gmime-iconv-utils.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*  GMime
3  *  Copyright (C) 2000-2012 Jeffrey Stedfast
4  *
5  *  This library is free software; you can redistribute it and/or
6  *  modify it under the terms of the GNU Lesser General Public License
7  *  as published by the Free Software Foundation; either version 2.1
8  *  of the License, or (at your option) any later version.
9  *
10  *  This library 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 GNU
13  *  Lesser General Public License for more details.
14  *
15  *  You should have received a copy of the GNU Lesser General Public
16  *  License along with this library; if not, write to the Free
17  *  Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
18  *  02110-1301, USA.
19  */
20
21
22 #ifndef __GMIME_ICONV_UTILS_H__
23 #define __GMIME_ICONV_UTILS_H__
24
25 #include <glib.h>
26
27 #include <sys/types.h>
28 #include <iconv.h>
29
30 G_BEGIN_DECLS
31
32 char *g_mime_iconv_strdup (iconv_t cd, const char *str);
33 char *g_mime_iconv_strndup (iconv_t cd, const char *str, size_t n);
34
35 char *g_mime_iconv_locale_to_utf8 (const char *str);
36 char *g_mime_iconv_locale_to_utf8_length (const char *str, size_t n);
37
38 char *g_mime_iconv_utf8_to_locale (const char *str);
39 char *g_mime_iconv_utf8_to_locale_length (const char *str, size_t n);
40
41 G_END_DECLS
42
43 #endif /* __GMIME_ICONV_UTILS_H__ */