1 /* hard-locale.c -- Determine whether a locale is hard.
3 Copyright (C) 1997, 1998, 1999, 2002, 2003, 2004 Free Software
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)
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.
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. */
24 #include "hard-locale.h"
33 # define GLIBC_VERSION __GLIBC__
35 # define GLIBC_VERSION 0
38 /* Return true if the current CATEGORY locale is hard, i.e. if you
39 can't get away with assuming traditional C or POSIX behavior. */
41 hard_locale (int category
)
44 char const *p
= setlocale (category
, NULL
);
48 if (2 <= GLIBC_VERSION
)
50 if (strcmp (p
, "C") == 0 || strcmp (p
, "POSIX") == 0)
55 char *locale
= strdup (p
);
58 /* Temporarily set the locale to the "C" and "POSIX" locales
59 to find their names, so that we can determine whether one
60 or the other is the caller's locale. */
61 if (((p
= setlocale (category
, "C"))
62 && strcmp (p
, locale
) == 0)
63 || ((p
= setlocale (category
, "POSIX"))
64 && strcmp (p
, locale
) == 0))
67 /* Restore the caller's locale. */
68 setlocale (category
, locale
);