about summary refs log tree commit diff
path: root/REORG.TODO/stdio-common/scanf5.c
diff options
context:
space:
mode:
Diffstat (limited to 'REORG.TODO/stdio-common/scanf5.c')
-rw-r--r--REORG.TODO/stdio-common/scanf5.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/REORG.TODO/stdio-common/scanf5.c b/REORG.TODO/stdio-common/scanf5.c
new file mode 100644
index 0000000000..fb4acfabf1
--- /dev/null
+++ b/REORG.TODO/stdio-common/scanf5.c
@@ -0,0 +1,21 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int
+main(int argc, char *argv[])
+{
+  int a, b;
+
+  a = b = -1;
+  sscanf ("12ab", "%dab%n", &a, &b);
+  printf ("%d, %d\n", a, b);
+  if (a != 12 || b != 4)
+    abort ();
+
+  a = b = -1;
+  sscanf ("12ab100", "%dab%n100", &a, &b);
+  printf ("%d, %d\n", a, b);
+  if (a != 12 || b != 4)
+    abort ();
+  return 0;
+}