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

数学计算

开发平台:

Unix_Linux

  1. /* __gmp_asprintf_memory etc -- formatted output to allocated space.
  2. Copyright 2001, 2002 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. /* These routines are in a separate file so that the mpz_t, mpq_t and mpf_t
  15.    operator<< routines can avoid dragging vsnprintf into the link (via
  16.    __gmp_asprintf_format).  */
  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. int
  29. __gmp_asprintf_memory (struct gmp_asprintf_t *d, const char *str, size_t len)
  30. {
  31.   GMP_ASPRINTF_T_NEED (d, len);
  32.   memcpy (d->buf + d->size, str, len);
  33.   d->size += len;
  34.   return len;
  35. }
  36. int
  37. __gmp_asprintf_reps (struct gmp_asprintf_t *d, int c, int reps)
  38. {
  39.   GMP_ASPRINTF_T_NEED (d, reps);
  40.   memset (d->buf + d->size, c, reps);
  41.   d->size += reps;
  42.   return reps;
  43. }
  44. int
  45. __gmp_asprintf_final (struct gmp_asprintf_t *d)
  46. {
  47.   char  *buf = d->buf;
  48.   ASSERT (d->alloc >= d->size + 1);
  49.   buf[d->size] = '';
  50.   __GMP_REALLOCATE_FUNC_MAYBE_TYPE (buf, d->alloc, d->size+1, char);
  51.   *d->result = buf;
  52.   return 0;
  53. }