clocale.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* Manipulable localeconv and nl_langinfo.
  2. Copyright 2001, 2002 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include "config.h"
  15. #if HAVE_NL_TYPES_H
  16. #include <nl_types.h>  /* for nl_item */
  17. #endif
  18. #if HAVE_LANGINFO_H
  19. #include <langinfo.h>  /* for nl_langinfo */
  20. #endif
  21. #if HAVE_LOCALE_H
  22. #include <locale.h>    /* for lconv */
  23. #endif
  24. /* Replace the libc localeconv and nl_langinfo with ones we can manipulate.
  25.    This is done in a C file since if it was in a C++ file then we'd have to
  26.    match the "throw" or lack thereof declared for localeconv in <locale.h>.
  27.    g++ 3.2 gives an error about mismatched throws under "-pedantic", other
  28.    C++ compilers may very possibly do so too.  */
  29. extern char point_string[];
  30. #if HAVE_LOCALECONV
  31. struct lconv *
  32. localeconv (void)
  33. {
  34.   static struct lconv  l;
  35.   l.decimal_point = point_string;
  36.   return &l;
  37. }
  38. #endif
  39. #if HAVE_NL_LANGINFO
  40. char *
  41. nl_langinfo (nl_item n)
  42. {
  43.   return point_string;
  44. }
  45. #endif