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