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

数学计算

开发平台:

Unix_Linux

  1. /* __gmp_sscanf_funs -- support for formatted input from a string.
  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, 2002, 2003, 2009 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 <stdarg.h>
  19. #include "gmp.h"
  20. #include "gmp-impl.h"
  21. #if 0
  22. static int
  23. scan (const char **sp, const char *fmt, ...)
  24. {
  25.     va_list ap;
  26.     int ret;
  27.     va_start(ap, fmt);
  28.     ret = vsscanf(*sp, fmt, ap);
  29.     va_end(ap);
  30.     return ret;
  31. }
  32. #else
  33. static int
  34. scan (const char **sp, const char *fmt, ...)
  35. {
  36.   va_list ap;
  37.   void *p1, *p2;
  38.   int ret;
  39.   va_start (ap, fmt);
  40.   p1 = va_arg (ap, void *);
  41.   p2 = va_arg (ap, void *);
  42.   ret = sscanf (*sp, fmt, p1, p2);
  43.   va_end (ap);
  44.   return ret;
  45. }
  46. #endif
  47. static void
  48. step (const char **sp, int n)
  49. {
  50.   ASSERT (n >= 0);
  51.   /* shouldn't push us past the end of the string */
  52. #if WANT_ASSERT
  53.   {
  54.     int  i;
  55.     for (i = 0; i < n; i++)
  56.       ASSERT ((*sp)[i] != '');
  57.   }
  58. #endif
  59.   (*sp) += n;
  60. }
  61. static int
  62. get (const char **sp)
  63. {
  64.   const char  *s;
  65.   int  c;
  66.   s = *sp;
  67.   c = (unsigned char) *s++;
  68.   if (c == '')
  69.     return EOF;
  70.   *sp = s;
  71.   return c;
  72. }
  73. static void
  74. unget (int c, const char **sp)
  75. {
  76.   const char  *s;
  77.   s = *sp;
  78.   if (c == EOF)
  79.     {
  80.       ASSERT (*s == '');
  81.       return;
  82.     }
  83.   s--;
  84.   ASSERT ((unsigned char) *s == c);
  85.   *sp = s;
  86. }
  87. const struct gmp_doscan_funs_t  __gmp_sscanf_funs = {
  88.   (gmp_doscan_scan_t)  scan,
  89.   (gmp_doscan_step_t)  step,
  90.   (gmp_doscan_get_t)   get,
  91.   (gmp_doscan_unget_t) unget,
  92. };