summaryrefslogtreecommitdiff
path: root/mpq/out_str.c
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2000-05-13 23:51:15 +0200
committerKevin Ryde <user42@zip.com.au>2000-05-13 23:51:15 +0200
commit9eedb5af9636e099717a2f86df910992e8502086 (patch)
tree6633c78ac2fd0f0e8e7b5d19ee6ca3c438123a2c /mpq/out_str.c
parent14b01db729bb871a9f4ccd7193e0f5d800c1ac96 (diff)
downloadgmp-9eedb5af9636e099717a2f86df910992e8502086.tar.gz
* mpq/out_str.c: New file.
Diffstat (limited to 'mpq/out_str.c')
-rw-r--r--mpq/out_str.c53
1 files changed, 53 insertions, 0 deletions
diff --git a/mpq/out_str.c b/mpq/out_str.c
new file mode 100644
index 000000000..956725796
--- /dev/null
+++ b/mpq/out_str.c
@@ -0,0 +1,53 @@
+/* mpq_out_str(stream,base,integer) */
+
+/*
+Copyright (C) 2000 Free Software Foundation, Inc.
+
+This file is part of the GNU MP Library.
+
+The GNU MP Library is free software; you can redistribute it and/or modify
+it under the terms of the GNU Library General Public License as published by
+the Free Software Foundation; either version 2 of the License, or (at your
+option) any later version.
+
+The GNU MP Library is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
+License for more details.
+
+You should have received a copy of the GNU Library General Public License
+along with the GNU MP Library; see the file COPYING.LIB. If not, write to
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+MA 02111-1307, USA.
+*/
+
+#include <stdio.h>
+#include "gmp.h"
+#include "gmp-impl.h"
+
+
+size_t
+#if __STDC__
+mpq_out_str (FILE *stream, int base, mpq_srcptr q)
+#else
+mpq_out_str (stream, base, q)
+ FILE *stream;
+ int base;
+ mpq_srcptr q;
+#endif
+{
+ size_t written;
+
+ if (stream == NULL)
+ stream = stdout;
+
+ written = mpz_out_str (stream, base, mpq_numref (q));
+
+ if (mpz_cmp_ui (mpq_denref (q), 1) != 0)
+ {
+ putc ('/', stream);
+ written += 1 + mpz_out_str (stream, base, mpq_denref (q));
+ }
+
+ return ferror (stream) ? 0 : written;
+}