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

数学计算

开发平台:

Unix_Linux

  1. /* mpq_set_str -- string to mpq conversion.
  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 <stdio.h>
  15. #include <string.h>
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. /* FIXME: Would like an mpz_set_mem (or similar) accepting a pointer and
  19.    length so we wouldn't have to copy the numerator just to null-terminate
  20.    it.  */
  21. int
  22. mpq_set_str (mpq_ptr q, const char *str, int base)
  23. {
  24.   const char  *slash;
  25.   char        *num;
  26.   size_t      numlen;
  27.   int         ret;
  28.   slash = strchr (str, '/');
  29.   if (slash == NULL)
  30.     {
  31.       q->_mp_den._mp_size = 1;
  32.       q->_mp_den._mp_d[0] = 1;
  33.       return mpz_set_str (mpq_numref(q), str, base);
  34.     }
  35.   numlen = slash - str;
  36.   num = __GMP_ALLOCATE_FUNC_TYPE (numlen+1, char);
  37.   memcpy (num, str, numlen);
  38.   num[numlen] = '';
  39.   ret = mpz_set_str (mpq_numref(q), num, base);
  40.   (*__gmp_free_func) (num, numlen+1);
  41.   if (ret != 0)
  42.     return ret;
  43.   return mpz_set_str (mpq_denref(q), slash+1, base);
  44. }