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

数学计算

开发平台:

Unix_Linux

  1. /* __gmp_doprnt_integer_ios -- integer formatted output to an ostream.
  2.    THE FUNCTIONS IN THIS FILE ARE FOR INTERNAL USE ONLY.  THEY'RE ALMOST
  3.    CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR COMPLETELY IN
  4.    FUTURE GNU MP RELEASES.
  5. Copyright 2001 Free Software Foundation, Inc.
  6. This file is part of the GNU MP Library.
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU Lesser General Public License as published by
  9. the Free Software Foundation; either version 3 of the License, or (at your
  10. option) any later version.
  11. The GNU MP Library is distributed in the hope that it will be useful, but
  12. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  14. License for more details.
  15. You should have received a copy of the GNU Lesser General Public License
  16. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  17. #include <iostream>
  18. #include <cstdarg>    /* for va_list and hence doprnt_funs_t */
  19. #include <cstring>    /* for strlen */
  20. #include "gmp.h"
  21. #include "gmp-impl.h"
  22. using namespace std;
  23. /* The gmp_asprintf support routines never give an error, so
  24.    __gmp_doprnt_integer shouldn't fail and it's return can just be checked
  25.    with an ASSERT.  */
  26. ostream&
  27. __gmp_doprnt_integer_ostream (ostream &o, struct doprnt_params_t *p,
  28.                               char *s)
  29. {
  30.   struct gmp_asprintf_t   d;
  31.   char  *result;
  32.   int   ret;
  33.   /* don't show leading zeros the way printf does */
  34.   p->prec = -1;
  35.   GMP_ASPRINTF_T_INIT (d, &result);
  36.   ret = __gmp_doprnt_integer (&__gmp_asprintf_funs_noformat, &d, p, s);
  37.   ASSERT (ret != -1);
  38.   __gmp_asprintf_final (&d);
  39.   (*__gmp_free_func) (s, strlen(s)+1);
  40.   gmp_allocated_string  t (result);
  41.   return o.write (t.str, t.len);
  42. }