1 /* Copyright (C) 1991, 1992, 1996 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA. */
21 #include </usr/include/stdio.h>
30 DEFUN(main
, (argc
, argv
), int argc AND
char **argv
)
33 FILE *in
= stdin
, *out
= stdout
;
36 if (sscanf ("0", "%d", &x
) != 1)
39 sscanf ("conversion] Zero flag Ze]ro#\n", "%*[^]] %[^#]\n", buf
);
40 if (strcmp (buf
, "] Zero flag Ze]ro") != 0)
42 fputs ("test failed!\n", stderr
);
46 if (argc
== 2 && !strcmp (argv
[1], "-opipe"))
48 out
= popen ("/bin/cat", "w");
51 perror ("popen: /bin/cat");
55 else if (argc
== 3 && !strcmp (argv
[1], "-ipipe"))
57 sprintf (buf
, "/bin/cat %s", argv
[2]);
58 in
= popen (buf
, "r");
64 "sscanf (\"thompson\", \"%%s\", name) == %d, name == \"%s\"\n",
65 sscanf ("thompson", "%s", name
),
67 if (strcmp (name
, "thompson") != 0)
71 fputs ("Testing scanf (vfscanf)\n", out
);
73 fputs ("Test 1:\n", out
);
78 n
= fscanf (in
, "%d%f%s", &i
, &x
, name
);
79 fprintf (out
, "n = %d, i = %d, x = %f, name = \"%.50s\"\n",
81 if (n
!= 3 || i
!= 25 || x
!= 5.432F
|| strcmp (name
, "thompson"))
84 fprintf (out
, "Residual: \"%s\"\n", fgets (buf
, sizeof (buf
), in
));
85 if (strcmp (buf
, "\n"))
87 fputs ("Test 2:\n", out
);
92 (void) fscanf (in
, "%2d%f%*d %[0123456789]", &i
, &x
, name
);
93 fprintf (out
, "i = %d, x = %f, name = \"%.50s\"\n", i
, x
, name
);
94 if (i
!= 56 || x
!= 789.0F
|| strcmp(name
, "56"))
97 fprintf (out
, "Residual: \"%s\"\n", fgets (buf
, sizeof (buf
), in
));
98 if (strcmp (buf
, "a72\n"))
100 fputs ("Test 3:\n", out
);
108 { 3, 2.0F
, "quarts", "oil" },
109 { 2, -12.8F
, "degrees", "" },
111 { 3, 10.0F
, "LBS", "fertilizer" },
112 { 3, 100.0F
, "rgs", "energy" },
113 { -1, 0.0F
, "", "" }};
116 char units
[21], item
[21];
117 while (!feof (in
) && !ferror (in
))
121 if (rounds
++ >= sizeof (ok
) / sizeof (ok
[0]))
125 units
[0] = item
[0] = '\0';
126 count
= fscanf (in
, "%f%20s of %20s", &quant
, units
, item
);
127 (void) fscanf (in
, "%*[^\n]");
128 fprintf (out
, "count = %d, quant = %f, item = %.21s, units = %.21s\n",
129 count
, quant
, item
, units
);
130 if (count
!= ok
[rounds
-1].count
|| quant
!= ok
[rounds
-1].quant
131 || strcmp (item
, ok
[rounds
-1].item
)
132 || strcmp (units
, ok
[rounds
-1].units
))
137 fprintf (out
, "Residual: \"%s\"\n", fgets (buf
, sizeof (buf
), in
));
138 if (strcmp (buf
, ""))