* lib/regex_internal.c (re_string_reconstruct): Handle
[gnulib.git] / lib / hard-locale.c
1 /* hard-locale.c -- Determine whether a locale is hard.
2
3    Copyright (C) 1997, 1998, 1999, 2002, 2003, 2004, 2006 Free
4    Software 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
19
20 #include <config.h>
21
22 #include "hard-locale.h"
23
24 #include <locale.h>
25 #include <stdlib.h>
26 #include <string.h>
27
28 #include "strdup.h"
29
30 #ifdef __GLIBC__
31 # define GLIBC_VERSION __GLIBC__
32 #else
33 # define GLIBC_VERSION 0
34 #endif
35
36 /* Return true if the current CATEGORY locale is hard, i.e. if you
37    can't get away with assuming traditional C or POSIX behavior.  */
38 bool
39 hard_locale (int category)
40 {
41   bool hard = true;
42   char const *p = setlocale (category, NULL);
43
44   if (p)
45     {
46       if (2 <= GLIBC_VERSION)
47         {
48           if (strcmp (p, "C") == 0 || strcmp (p, "POSIX") == 0)
49             hard = false;
50         }
51       else
52         {
53           char *locale = strdup (p);
54           if (locale)
55             {
56               /* Temporarily set the locale to the "C" and "POSIX" locales
57                  to find their names, so that we can determine whether one
58                  or the other is the caller's locale.  */
59               if (((p = setlocale (category, "C"))
60                    && strcmp (p, locale) == 0)
61                   || ((p = setlocale (category, "POSIX"))
62                       && strcmp (p, locale) == 0))
63                 hard = false;
64
65               /* Restore the caller's locale.  */
66               setlocale (category, locale);
67               free (locale);
68             }
69         }
70     }
71
72   return hard;
73 }