mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
05be689b57
* stdio-common/Makefile (tests): Add bug10. * stdio-common/bug10.c: New file. From HJ Lu. * stdio-common/tstdiomisc.c: Make more test-suite like: exit status tells about successful run. * stdio-common/vfscanf.c [!USE_IN_LIBIO]: Use `flags' to check format correctness. Correct handling of trailing white spaces in format + EOF. Fri Dec 15 01:31:56 1995 Ulrich Drepper <drepper@gnu.ai.mit.edu> * stdio-common/Makefile (tests): Add bug8 and bug9. * stdio-common/bug8.c, stdio-common/bug9.c: New tests. * stdio-common/vfscanf.c: Fix bug in dynamic buffer handling. * stdlib/strtod.c: Correct spelling: nominator -> numerator. Thanks to Jim Meyering. Sat Nov 25 06:05:12 1995 H.J. Lu <hjl@nynexst.com> * stdio-common/vfscanf.c: Always check width !=0. Correctly handle %%.
27 lines
481 B
C
27 lines
481 B
C
#include <stdio.h>
|
|
int main(int arc, char *argv)
|
|
{
|
|
int n, res;
|
|
unsigned int val;
|
|
char *s;
|
|
int result = 0;
|
|
|
|
s = "111";
|
|
|
|
n = 0;
|
|
res = sscanf(s, "%u %n", &val, &n);
|
|
|
|
printf("Result of sscanf = %d\n", res);
|
|
printf("Scanned format %%u = %u\n", val);
|
|
printf("Possibly scanned format %%n = %d\n", n);
|
|
result |= res != 1 || val != 111 || n != 3;
|
|
|
|
|
|
result |= sscanf ("", " %n", &n) == EOF;
|
|
|
|
puts (result ? "Test failed" : "All tests passed");
|
|
|
|
return result;
|
|
}
|
|
|