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

数学计算

开发平台:

Unix_Linux

  1. /* mpq_inp_str -- read an mpq from a FILE.
  2. Copyright 2001 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 <ctype.h>
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. size_t
  19. mpq_inp_str (mpq_ptr q, FILE *fp, int base)
  20. {
  21.   size_t  nread;
  22.   int     c;
  23.   if (fp == NULL)
  24.     fp = stdin;
  25.   q->_mp_den._mp_size = 1;
  26.   q->_mp_den._mp_d[0] = 1;
  27.   nread = mpz_inp_str (mpq_numref(q), fp, base);
  28.   if (nread == 0)
  29.     return 0;
  30.   c = getc (fp);
  31.   nread++;
  32.   if (c == '/')
  33.     {
  34.       c = getc (fp);
  35.       nread++;
  36.       nread = mpz_inp_str_nowhite (mpq_denref(q), fp, base, c, nread);
  37.       if (nread == 0)
  38.         {
  39.           q->_mp_num._mp_size = 0;
  40.           q->_mp_den._mp_size = 1;
  41.           q->_mp_den._mp_d[0] = 1;
  42.         }
  43.     }
  44.   else
  45.     {
  46.       ungetc (c, fp);
  47.       nread--;
  48.     }
  49.   return nread;
  50. }