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

数学计算

开发平台:

Unix_Linux

  1. /* __gmp_obstack_printf_funs -- support for gmp_obstack_printf and
  2.    gmp_obstack_vprintf.
  3.    THE FUNCTIONS IN THIS FILE ARE FOR INTERNAL USE ONLY.  THEY'RE ALMOST
  4.    CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR COMPLETELY IN
  5.    FUTURE GNU MP RELEASES.
  6. Copyright 2001 Free Software Foundation, Inc.
  7. This file is part of the GNU MP Library.
  8. The GNU MP Library is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU Lesser General Public License as published by
  10. the Free Software Foundation; either version 3 of the License, or (at your
  11. option) any later version.
  12. The GNU MP Library is distributed in the hope that it will be useful, but
  13. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  14. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  15. License for more details.
  16. You should have received a copy of the GNU Lesser General Public License
  17. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  18. #include "config.h"
  19. #if HAVE_OBSTACK_VPRINTF
  20. #define _GNU_SOURCE   /* ask glibc <stdio.h> for obstack_vprintf */
  21. #if HAVE_STDARG
  22. #include <stdarg.h>
  23. #else
  24. #include <varargs.h>
  25. #endif
  26. #include <stdio.h>    /* for obstack_vprintf */
  27. #include <string.h>
  28. #include <obstack.h>
  29. #include "gmp.h"
  30. #include "gmp-impl.h"
  31. static int
  32. gmp_obstack_memory (struct obstack *ob, const char *ptr, size_t len)
  33. {
  34.   obstack_grow (ob, ptr, len);
  35.   return len;
  36. }
  37. static int
  38. gmp_obstack_reps (struct obstack *ob, int c, int reps)
  39. {
  40.   obstack_blank (ob, reps);
  41.   memset ((char *) obstack_next_free(ob) - reps, c, reps);
  42.   return reps;
  43. }
  44. const struct doprnt_funs_t  __gmp_obstack_printf_funs = {
  45.   (doprnt_format_t) obstack_vprintf,
  46.   (doprnt_memory_t) gmp_obstack_memory,
  47.   (doprnt_reps_t)   gmp_obstack_reps
  48. };
  49. #endif /* HAVE_OBSTACK_VPRINTF */