1 /* hard-locale.c -- Determine whether a locale is hard.
3 Copyright (C) 1997, 1998, 1999, 2002, 2003 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 #include "hard-locale.h"
32 /* Return nonzero if the current CATEGORY locale is hard, i.e. if you
33 can't get away with assuming traditional C or POSIX behavior. */
35 hard_locale (int category
)
42 char const *p
= setlocale (category
, 0);
46 # if defined __GLIBC__ && 2 <= __GLIBC__
47 if (strcmp (p
, "C") == 0 || strcmp (p
, "POSIX") == 0)
50 char *locale
= malloc (strlen (p
) + 1);
55 /* Temporarily set the locale to the "C" and "POSIX" locales
56 to find their names, so that we can determine whether one
57 or the other is the caller's locale. */
58 if (((p
= setlocale (category
, "C"))
59 && strcmp (p
, locale
) == 0)
60 || ((p
= setlocale (category
, "POSIX"))
61 && strcmp (p
, locale
) == 0))
64 /* Restore the caller's locale. */
65 setlocale (category
, locale
);