diff options
Diffstat (limited to 'stdio-common/bug10.c')
-rw-r--r-- | stdio-common/bug10.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/stdio-common/bug10.c b/stdio-common/bug10.c new file mode 100644 index 0000000000..3e1477dca1 --- /dev/null +++ b/stdio-common/bug10.c @@ -0,0 +1,26 @@ +#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; +} + |