Made some functions static.
[gedcom-parse.git] / utf8 / utf8-locale.c
index bcfb17e1a9887406540bb8d88e422d73fe0bb22f..ff443e17e188cdbcebb5ea3c188d0047bf78c07d 100644 (file)
@@ -1,9 +1,20 @@
 /* Encoding utility from UTF-8 to locale and vice versa
    Copyright (C) 2001, 2002 Peter Verthez
 
-   Permission granted to do anything with this file that you want, as long
-   as the above copyright is retained in all copies.
-   THERE IS NO WARRANTY - USE AT YOUR OWN RISK
+   The UTF8 tools library is free software; you can redistribute it
+   and/or modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The Gedcom parser library is distributed in the hope that it will be
+   useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the Gedcom parser library; if not, write to the
+   Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.
 */
 
 /* $Id$ */
 
 static convert_t locale_conv = NULL;
 
-void close_conversion_contexts()
+static void close_conversion_contexts()
 {
   cleanup_utf8_conversion(locale_conv);
 }
 
-int open_conversion_contexts()
+static int open_conversion_contexts()
 {
   assert (locale_conv == NULL);
   locale_conv = initialize_utf8_conversion(locale_charset(), 0);