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

数学计算

开发平台:

Unix_Linux

  1. /* __gmp_sprintf_funs -- support for gmp_sprintf and gmp_vsprintf.
  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 <stdlib.h>
  25. #include <string.h>
  26. #include "gmp.h"
  27. #include "gmp-impl.h"
  28. /* The data parameter "bufp" points to a "char *buf" which is the next
  29.    character to be written, having started as the destination from the
  30.    application.  This is then increased each time output is produced.  */
  31. /* If vsprintf returns -1 then pass it upwards.  It doesn't matter that
  32.    "*bufp" is ruined in this case, since gmp_doprint will bail out
  33.    immediately anyway.  */
  34. static int
  35. gmp_sprintf_format (char **bufp, const char *fmt, va_list ap)
  36. {
  37.   char  *buf = *bufp;
  38.   int   ret;
  39.   vsprintf (buf, fmt, ap);
  40.   ret = strlen (buf);
  41.   *bufp = buf + ret;
  42.   return ret;
  43. }
  44. static int
  45. gmp_sprintf_memory (char **bufp, const char *str, size_t len)
  46. {
  47.   char  *buf = *bufp;
  48.   *bufp = buf + len;
  49.   memcpy (buf, str, len);
  50.   return len;
  51. }
  52. static int
  53. gmp_sprintf_reps (char **bufp, int c, int reps)
  54. {
  55.   char  *buf = *bufp;
  56.   ASSERT (reps >= 0);
  57.   *bufp = buf + reps;
  58.   memset (buf, c, reps);
  59.   return reps;
  60. }
  61. static int
  62. gmp_sprintf_final (char **bufp, int c, int reps)
  63. {
  64.   char  *buf = *bufp;
  65.   *buf = '';
  66.   return 0;
  67. }
  68. const struct doprnt_funs_t  __gmp_sprintf_funs = {
  69.   (doprnt_format_t) gmp_sprintf_format,
  70.   (doprnt_memory_t) gmp_sprintf_memory,
  71.   (doprnt_reps_t)   gmp_sprintf_reps,
  72.   (doprnt_final_t)  gmp_sprintf_final
  73. };