summaryrefslogtreecommitdiff
path: root/cxx/osmpq.cc
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2001-10-01 03:12:43 +0200
committerKevin Ryde <user42@zip.com.au>2001-10-01 03:12:43 +0200
commit6b98a9bda6e8a14db763be6dd39618f86822f7f9 (patch)
tree3740ddbe8742ddfd01ab73a29feb68796b376b18 /cxx/osmpq.cc
parentdbe88e11ce72fd6ba43e8ae326a655c96a8e0f13 (diff)
downloadgmp-6b98a9bda6e8a14db763be6dd39618f86822f7f9.tar.gz
* cxx/Makefile.am, cxx/Makefile.in, cxx/osdoprnti.cc, cxx/osfuns.cc,
cxx/osmpf.cc, cxx/osmpq.cc, cxx/osmpz.cc: New files.
Diffstat (limited to 'cxx/osmpq.cc')
-rw-r--r--cxx/osmpq.cc37
1 files changed, 37 insertions, 0 deletions
diff --git a/cxx/osmpq.cc b/cxx/osmpq.cc
new file mode 100644
index 000000000..c40342ee3
--- /dev/null
+++ b/cxx/osmpq.cc
@@ -0,0 +1,37 @@
+/* mpq_out_ostream -- mpq formatted output to an ostream.
+
+Copyright 2001 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 Lesser General Public License as published by
+the Free Software Foundation; either version 2.1 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 Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser 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 <iostream.h>
+#include <stdarg.h> /* for va_list and hence doprnt_funs_t */
+#include <string.h>
+
+#include "gmp.h"
+#include "gmp-impl.h"
+
+
+ostream&
+mpq_out_ostream (ostream &o, mpq_srcptr q)
+{
+ struct doprnt_params_t param;
+ __gmp_doprnt_params_from_ios (&param, o);
+ return __gmp_doprnt_integer_ostream (o, &param,
+ mpq_get_str (NULL, param.base, q));
+}