summaryrefslogtreecommitdiff
path: root/stdio-common/scanf4.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-01-24 08:23:33 +0000
committerRoland McGrath <roland@gnu.org>1996-01-24 08:23:33 +0000
commita66067befed6a453b75a2a0caac2c50d3a6e9cfb (patch)
tree38e6d6330653a7349cca5ab6541b7164a368e68f /stdio-common/scanf4.c
parent0793d3483ae525d659ea13cfd0563e6ea9a0c9ce (diff)
* stdio-common/Makefile (tests): Add scanf[1-9].
* stdio-common/scanf[1-9].c: New files. Bug tests from hjl. Wed Jan 24 03:22:07 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu> * stdio-common/Makefile (tests): Add scanf[1-9]. * stdio-common/scanf[1-9].c: New files. Bug tests from hjl.
Diffstat (limited to 'stdio-common/scanf4.c')
-rw-r--r--stdio-common/scanf4.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/stdio-common/scanf4.c b/stdio-common/scanf4.c
new file mode 100644
index 0000000000..b624b69d98
--- /dev/null
+++ b/stdio-common/scanf4.c
@@ -0,0 +1,30 @@
+#include <stdio.h>
+
+int main(int arc, char *argv)
+{
+ int n, res;
+ unsigned int val;
+
+ FILE *fp = fopen ("/dev/null", "r");
+
+ val = 0;
+ res = fscanf(fp, "%n", &val);
+
+ printf("Result of fscanf %%n = %d\n", res);
+ printf("Scanned format = %d\n", val);
+
+ res = fscanf(fp, "");
+ printf("Result of fscanf \"\" = %d\n", res);
+ if (res != 0)
+ abort ();
+
+ res = fscanf(fp, "BLURB");
+ printf("Result of fscanf \"BLURB\" = %d\n", res);
+ if (res >= 0)
+ abort ();
+
+ fclose (fp);
+
+ return 0;
+ return 0;
+}