Home | History | Annotate | Line # | Download | only in mpq
inp_str.c revision 1.1.1.3
      1      1.1  mrg /* mpq_inp_str -- read an mpq from a FILE.
      2      1.1  mrg 
      3      1.1  mrg Copyright 2001 Free Software Foundation, Inc.
      4      1.1  mrg 
      5      1.1  mrg This file is part of the GNU MP Library.
      6      1.1  mrg 
      7      1.1  mrg The GNU MP Library is free software; you can redistribute it and/or modify
      8  1.1.1.3  mrg it under the terms of either:
      9  1.1.1.3  mrg 
     10  1.1.1.3  mrg   * the GNU Lesser General Public License as published by the Free
     11  1.1.1.3  mrg     Software Foundation; either version 3 of the License, or (at your
     12  1.1.1.3  mrg     option) any later version.
     13  1.1.1.3  mrg 
     14  1.1.1.3  mrg or
     15  1.1.1.3  mrg 
     16  1.1.1.3  mrg   * the GNU General Public License as published by the Free Software
     17  1.1.1.3  mrg     Foundation; either version 2 of the License, or (at your option) any
     18  1.1.1.3  mrg     later version.
     19  1.1.1.3  mrg 
     20  1.1.1.3  mrg or both in parallel, as here.
     21      1.1  mrg 
     22      1.1  mrg The GNU MP Library is distributed in the hope that it will be useful, but
     23      1.1  mrg WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
     24  1.1.1.3  mrg or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
     25  1.1.1.3  mrg for more details.
     26      1.1  mrg 
     27  1.1.1.3  mrg You should have received copies of the GNU General Public License and the
     28  1.1.1.3  mrg GNU Lesser General Public License along with the GNU MP Library.  If not,
     29  1.1.1.3  mrg see https://www.gnu.org/licenses/.  */
     30      1.1  mrg 
     31      1.1  mrg #include <stdio.h>
     32      1.1  mrg #include <ctype.h>
     33      1.1  mrg #include "gmp.h"
     34      1.1  mrg #include "gmp-impl.h"
     35      1.1  mrg 
     36      1.1  mrg 
     37      1.1  mrg size_t
     38      1.1  mrg mpq_inp_str (mpq_ptr q, FILE *fp, int base)
     39      1.1  mrg {
     40      1.1  mrg   size_t  nread;
     41      1.1  mrg   int     c;
     42      1.1  mrg 
     43      1.1  mrg   if (fp == NULL)
     44      1.1  mrg     fp = stdin;
     45      1.1  mrg 
     46  1.1.1.2  mrg   SIZ(DEN(q)) = 1;
     47  1.1.1.2  mrg   PTR(DEN(q))[0] = 1;
     48      1.1  mrg 
     49      1.1  mrg   nread = mpz_inp_str (mpq_numref(q), fp, base);
     50      1.1  mrg   if (nread == 0)
     51      1.1  mrg     return 0;
     52      1.1  mrg 
     53      1.1  mrg   c = getc (fp);
     54      1.1  mrg   nread++;
     55      1.1  mrg 
     56      1.1  mrg   if (c == '/')
     57      1.1  mrg     {
     58      1.1  mrg       c = getc (fp);
     59      1.1  mrg       nread++;
     60      1.1  mrg 
     61      1.1  mrg       nread = mpz_inp_str_nowhite (mpq_denref(q), fp, base, c, nread);
     62      1.1  mrg       if (nread == 0)
     63  1.1.1.2  mrg 	{
     64  1.1.1.2  mrg 	  SIZ(NUM(q)) = 0;
     65  1.1.1.2  mrg 	  SIZ(DEN(q)) = 1;
     66  1.1.1.2  mrg 	  PTR(DEN(q))[0] = 1;
     67  1.1.1.2  mrg 	}
     68      1.1  mrg     }
     69      1.1  mrg   else
     70      1.1  mrg     {
     71      1.1  mrg       ungetc (c, fp);
     72      1.1  mrg       nread--;
     73      1.1  mrg     }
     74      1.1  mrg 
     75      1.1  mrg   return nread;
     76      1.1  mrg }
     77