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