Blame glib/glib/gcharset.h

Packit db3073
/* gcharset.h - Charset functions
Packit db3073
 *
Packit db3073
 *  Copyright (C) 2011 Red Hat, Inc.
Packit db3073
 *
Packit db3073
 * The GLib Library is free software; you can redistribute it and/or
Packit db3073
 * modify it under the terms of the GNU Lesser General Public License as
Packit db3073
 * published by the Free Software Foundation; either version 2 of the
Packit db3073
 * License, or (at your option) any later version.
Packit db3073
 *
Packit db3073
 * The GLib Library is distributed in the hope that it will be useful,
Packit db3073
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit db3073
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit db3073
 * Lesser General Public License for more details.
Packit db3073
 *
Packit db3073
 * You should have received a copy of the GNU Lesser General Public
Packit db3073
 * License along with the Gnome Library; see the file COPYING.LIB.  If not,
Packit db3073
 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Packit db3073
 *   Boston, MA 02111-1307, USA.
Packit db3073
 */
Packit db3073
Packit db3073
#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
Packit db3073
#error "Only <glib.h> can be included directly."
Packit db3073
#endif
Packit db3073
Packit db3073
#ifndef __G_CHARSET_H__
Packit db3073
#define __G_CHARSET_H__
Packit db3073
Packit db3073
#include <glib/gtypes.h>
Packit db3073
Packit db3073
G_BEGIN_DECLS
Packit db3073
Packit db3073
gboolean              g_get_charset         (const char **charset);
Packit db3073
gchar *               g_get_codeset         (void);
Packit db3073
Packit db3073
const gchar * const * g_get_language_names  (void);
Packit db3073
gchar **              g_get_locale_variants (const gchar *locale);
Packit db3073
Packit db3073
G_END_DECLS
Packit db3073
Packit db3073
#endif  /* __G_CHARSET_H__ */