]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/gnu-sort/lib/hard-locale.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / gnu-sort / lib / hard-locale.c
1 /* hard-locale.c -- Determine whether a locale is hard.
2
3    Copyright (C) 1997, 1998, 1999, 2002, 2003, 2004 Free Software
4    Foundation, Inc.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software Foundation,
18    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19 /* $FreeBSD$ */
20
21 #if HAVE_CONFIG_H
22 # include <config.h>
23 #endif
24
25 #include "hard-locale.h"
26
27 #if HAVE_LOCALE_H
28 # include <locale.h>
29 #endif
30
31 #include <stdlib.h>
32 #include <string.h>
33
34 /* Return true if the current CATEGORY locale is hard, i.e. if you
35    can't get away with assuming traditional C or POSIX behavior.  */
36 bool
37 hard_locale (int category)
38 {
39 #if ! HAVE_SETLOCALE
40   return false;
41 #else
42
43   bool hard = true;
44   char const *p = setlocale (category, NULL);
45
46   if (p)
47     {
48 # if defined(__FreeBSD__) || (defined __GLIBC__ && 2 <= __GLIBC__)
49       if (strcmp (p, "C") == 0 || strcmp (p, "POSIX") == 0)
50         hard = false;
51 # else
52       char *locale = malloc (strlen (p) + 1);
53       if (locale)
54         {
55           strcpy (locale, p);
56
57           /* Temporarily set the locale to the "C" and "POSIX" locales
58              to find their names, so that we can determine whether one
59              or the other is the caller's locale.  */
60           if (((p = setlocale (category, "C"))
61                && strcmp (p, locale) == 0)
62               || ((p = setlocale (category, "POSIX"))
63                   && strcmp (p, locale) == 0))
64             hard = false;
65
66           /* Restore the caller's locale.  */
67           setlocale (category, locale);
68           free (locale);
69         }
70 # endif
71     }
72
73   return hard;
74
75 #endif
76 }