~ubuntu-branches/ubuntu/utopic/glib2.0/utopic

« back to all changes in this revision

Viewing changes to glib/libcharset/libcharset.h

Tags: upstream-2.12.12
ImportĀ upstreamĀ versionĀ 2.12.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2000-2001 Free Software Foundation, Inc.
 
2
   This file is part of the GNU CHARSET Library.
 
3
 
 
4
   The GNU CHARSET Library is free software; you can redistribute it and/or
 
5
   modify it under the terms of the GNU Library General Public License as
 
6
   published by the Free Software Foundation; either version 2 of the
 
7
   License, or (at your option) any later version.
 
8
 
 
9
   The GNU CHARSET Library is distributed in the hope that it will be useful,
 
10
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
   Library General Public License for more details.
 
13
 
 
14
   You should have received a copy of the GNU Library General Public License
 
15
   along with the GNU CHARSET Library; see the file COPYING.LIB.  If not,
 
16
   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
17
   Boston, MA 02111-1307, USA.  */
 
18
 
 
19
#ifndef _LIBCHARSET_H
 
20
#define _LIBCHARSET_H
 
21
 
 
22
 
 
23
#ifdef __cplusplus
 
24
extern "C" {
 
25
#endif
 
26
 
 
27
 
 
28
/* Determine the current locale's character encoding, and canonicalize it
 
29
   into one of the canonical names listed in config.charset.
 
30
   The result must not be freed; it is statically allocated.
 
31
   If the canonical name cannot be determined, the result is a non-canonical
 
32
   name.  */
 
33
extern const char * _g_locale_charset_raw (void);
 
34
extern const char * _g_locale_charset_unalias (const char *codeset);
 
35
extern const char * _g_locale_get_charset_aliases (void);
 
36
 
 
37
#ifdef __cplusplus
 
38
}
 
39
#endif
 
40
 
 
41
 
 
42
#endif /* _LIBCHARSET_H */