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
24extern "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.  */
33extern const char * locale_charset (void);
34
35
36#ifdef __cplusplus
37}
38#endif
39
40
41#endif /* _LIBCHARSET_H */
42