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