]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 27 Nov 2001 08:33:32 +0000 (08:33 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 27 Nov 2001 08:33:32 +0000 (08:33 +0000)
2001-11-27  Ulrich Drepper  <drepper@redhat.com>

* stdio-common/Makefile (tests): Add scanf11.
* stdio-common/scanf11.c: New file.

ChangeLog
stdio-common/Makefile
stdio-common/scanf11.c [new file with mode: 0644]

index 145a68e343d87dc551e1e11822e5d8355c38be8f..ca18691b560cecdac7c34b242fde88688065161a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-11-27  Ulrich Drepper  <drepper@redhat.com>
+
+       * stdio-common/Makefile (tests): Add scanf11.
+       * stdio-common/scanf11.c: New file.
+
 2001-11-26  Ulrich Drepper  <drepper@redhat.com>
 
        * version.h (RELEASE): Define as development.
index e91ebbb2bdab98ea31638d4c048c70381f4fa74a..fa94280d22d175e0b7630b86cb537fb7bf926a2a 100644 (file)
@@ -54,8 +54,8 @@ tests := tstscanf test_rdwr test-popen tstgetln test-fseek \
         bug1 bug2 bug3 bug4 bug5 bug6 bug7 bug8 bug9 bug10 bug11 bug12 bug13 \
         tfformat tiformat tllformat tstdiomisc tst-printfsz tst-wc-printf \
         scanf1 scanf2 scanf3 scanf4 scanf5 scanf7 scanf8 scanf9 scanf10 \
-        scanf12 tst-tmpnam tst-cookie tst-obprintf tst-sscanf tst-swprintf \
-        tst-fseek tst-fmemopen test-vfprintf tst-gets tst-perror
+        scanf11 scanf12 tst-tmpnam tst-cookie tst-obprintf tst-sscanf \
+        tst-swprintf tst-fseek tst-fmemopen test-vfprintf tst-gets tst-perror
 
 test-srcs = tst-unbputc tst-printf
 
diff --git a/stdio-common/scanf11.c b/stdio-common/scanf11.c
new file mode 100644 (file)
index 0000000..caa3a67
--- /dev/null
@@ -0,0 +1,47 @@
+/* Copyright (C) 2001 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+   Contributed by Ulrich Drepper <drepper@redhat.com>, 2001.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
+
+#include <ctype.h>
+#include <stdio.h>
+
+int
+main (int argc, char *argv[])
+{
+  int exc = 0;
+  int retc;
+  float f;
+  int d;
+  char str[] = "x 1";
+  int c;
+
+  for (c = 1; c < 127; ++c)
+    if (! isdigit (c) && ! isspace (c))
+      {
+       str[0] = c;
+       retc = sscanf (str, "%e %d", &f, &d);
+       if (retc != 0)
+         {
+           printf ("sscanf (\"%s\", \"%%e %%d\", ...) == %d, not 0\n",
+                   str, retc);
+           exc = 1;
+         }
+      }
+
+  return exc;
+}