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

数学计算

开发平台:

Unix_Linux

  1. /* __gmp_fprintf_funs -- support for formatted output to FILEs.
  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 "config.h"
  18. #if HAVE_STDARG
  19. #include <stdarg.h>
  20. #else
  21. #include <varargs.h>
  22. #endif
  23. #include <stdio.h>
  24. #include <string.h>
  25. #include "gmp.h"
  26. #include "gmp-impl.h"
  27. /* SunOS 4 stdio.h doesn't provide a prototype for this */
  28. #if ! HAVE_DECL_VFPRINTF
  29. int vfprintf __GMP_PROTO ((FILE *, const char *, va_list));
  30. #endif
  31. static int
  32. gmp_fprintf_memory (FILE *fp, const char *str, size_t len)
  33. {
  34.   return fwrite (str, 1, len, fp);
  35. }
  36. /* glibc putc is a function, at least when it's in multi-threaded mode or
  37.    some such, so fwrite chunks instead of making many calls. */
  38. static int
  39. gmp_fprintf_reps (FILE *fp, int c, int reps)
  40. {
  41.   char  buf[256];
  42.   int   i, piece, ret;
  43.   ASSERT (reps >= 0);
  44.   memset (buf, c, MIN (reps, sizeof (buf)));
  45.   for (i = reps; i > 0; i -= sizeof (buf))
  46.     {
  47.       piece = MIN (i, sizeof (buf));
  48.       ret = fwrite (buf, 1, piece, fp);
  49.       if (ret == -1)
  50.         return ret;
  51.       ASSERT (ret == piece);
  52.     }
  53.   return reps;
  54. }
  55. const struct doprnt_funs_t  __gmp_fprintf_funs = {
  56.   (doprnt_format_t) vfprintf,
  57.   (doprnt_memory_t) gmp_fprintf_memory,
  58.   (doprnt_reps_t)   gmp_fprintf_reps,
  59. };