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

数学计算

开发平台:

Unix_Linux

  1. /* __gmp_fscanf_funs -- support for formatted input from a FILE.
  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 <stdio.h>
  18. #include "gmp.h"
  19. #include "gmp-impl.h"
  20. /* SunOS 4 stdio.h doesn't provide prototypes for these */
  21. #if ! HAVE_DECL_FGETC
  22. int fgetc __GMP_PROTO ((FILE *fp));
  23. #endif
  24. #if ! HAVE_DECL_FSCANF
  25. int fscanf __GMP_PROTO ((FILE *fp, const char *fmt, ...));
  26. #endif
  27. #if ! HAVE_DECL_UNGETC
  28. int ungetc __GMP_PROTO ((int c, FILE *fp));
  29. #endif
  30. static void
  31. step (FILE *fp, int n)
  32. {
  33. }
  34. const struct gmp_doscan_funs_t  __gmp_fscanf_funs = {
  35.   (gmp_doscan_scan_t)  fscanf,
  36.   (gmp_doscan_step_t)  step,
  37.   (gmp_doscan_get_t)   fgetc,
  38.   (gmp_doscan_unget_t) ungetc,
  39. };