2001-11-27  Ulrich Drepper  <drepper@redhat.com>

	* stdio-common/Makefile (tests): Add scanf11.
	* stdio-common/scanf11.c: New file.
This commit is contained in:
Ulrich Drepper 2001-11-27 08:33:32 +00:00
parent 120aad5443
commit 8a2072042b
3 changed files with 54 additions and 2 deletions

View File

@ -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.

View 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

47
stdio-common/scanf11.c Normal file
View File

@ -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;
}