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

数学计算

开发平台:

Unix_Linux

  1. /* xtom -- convert a hexadecimal string to a MINT, and return a pointer to
  2.    the MINT.
  3. Copyright 1991, 1994, 1995, 1996, 2000, 2001, 2002, 2005 Free Software
  4. Foundation, Inc.
  5. This file is part of the GNU MP Library.
  6. The GNU MP Library is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU Lesser General Public License as published by
  8. the Free Software Foundation; either version 3 of the License, or (at your
  9. option) any later version.
  10. The GNU MP Library is distributed in the hope that it will be useful, but
  11. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  13. License for more details.
  14. You should have received a copy of the GNU Lesser General Public License
  15. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  16. #include <string.h>
  17. #include <ctype.h>
  18. #include "mp.h"
  19. #include "gmp.h"
  20. #include "gmp-impl.h"
  21. extern const unsigned char __gmp_digit_value_tab[];
  22. #define digit_value __gmp_digit_value_tab
  23. MINT *
  24. xtom (const char *str)
  25. {
  26.   size_t str_size;
  27.   char *s, *begs;
  28.   size_t i;
  29.   mp_size_t xsize;
  30.   int c;
  31.   int negative;
  32.   MINT *x = (MINT *) (*__gmp_allocate_func) (sizeof (MINT));
  33.   TMP_DECL;
  34.   /* Skip whitespace.  */
  35.   do
  36.     c = (unsigned char) *str++;
  37.   while (isspace (c));
  38.   negative = 0;
  39.   if (c == '-')
  40.     {
  41.       negative = 1;
  42.       c = (unsigned char) *str++;
  43.     }
  44.   if (digit_value[c] >= 16)
  45.     return 0; /* error if no digits */
  46.   TMP_MARK;
  47.   str_size = strlen (str - 1);
  48.   s = begs = (char *) TMP_ALLOC (str_size + 1);
  49.   for (i = 0; i < str_size; i++)
  50.     {
  51.       if (!isspace (c))
  52. {
  53.   int dig = digit_value[c];
  54.   if (dig >= 16)
  55.     {
  56.       TMP_FREE;
  57.       return 0;
  58.     }
  59.   *s++ = dig;
  60. }
  61.       c = (unsigned char) *str++;
  62.     }
  63.   str_size = s - begs;
  64.   xsize = str_size / mp_bases[16].chars_per_limb + 1;
  65.   x->_mp_alloc = xsize;
  66.   x->_mp_d = (mp_ptr) (*__gmp_allocate_func) (xsize * BYTES_PER_MP_LIMB);
  67.   xsize = mpn_set_str (x->_mp_d, (unsigned char *) begs, str_size, 16);
  68.   x->_mp_size = negative ? -xsize : xsize;
  69.   TMP_FREE;
  70.   return x;
  71. }