1 /* Copyright (C) 1991, 1992, 1996, 1997 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 not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
20 #include </usr/include/stdio.h>
29 main (int argc
, char **argv
)
32 FILE *in
= stdin
, *out
= stdout
;
35 if (sscanf ("0", "%d", &x
) != 1)
38 sscanf ("conversion] Zero flag Ze]ro#\n", "%*[^]] %[^#]\n", buf
);
39 if (strcmp (buf
, "] Zero flag Ze]ro") != 0)
41 fputs ("test failed!\n", stderr
);
45 if (argc
== 2 && !strcmp (argv
[1], "-opipe"))
47 out
= popen ("/bin/cat", "w");
50 perror ("popen: /bin/cat");
54 else if (argc
== 3 && !strcmp (argv
[1], "-ipipe"))
56 sprintf (buf
, "/bin/cat %s", argv
[2]);
57 in
= popen (buf
, "r");
63 "sscanf (\"thompson\", \"%%s\", name) == %d, name == \"%s\"\n",
64 sscanf ("thompson", "%s", name
),
66 if (strcmp (name
, "thompson") != 0)
70 fputs ("Testing scanf (vfscanf)\n", out
);
72 fputs ("Test 1:\n", out
);
77 n
= fscanf (in
, "%d%f%s", &i
, &x
, name
);
78 fprintf (out
, "n = %d, i = %d, x = %f, name = \"%.50s\"\n",
80 if (n
!= 3 || i
!= 25 || x
!= 5.432F
|| strcmp (name
, "thompson"))
83 fprintf (out
, "Residual: \"%s\"\n", fgets (buf
, sizeof (buf
), in
));
84 if (strcmp (buf
, "\n"))
86 fputs ("Test 2:\n", out
);
91 (void) fscanf (in
, "%2d%f%*d %[0123456789]", &i
, &x
, name
);
92 fprintf (out
, "i = %d, x = %f, name = \"%.50s\"\n", i
, x
, name
);
93 if (i
!= 56 || x
!= 789.0F
|| strcmp(name
, "56"))
96 fprintf (out
, "Residual: \"%s\"\n", fgets (buf
, sizeof (buf
), in
));
97 if (strcmp (buf
, "a72\n"))
99 fputs ("Test 3:\n", out
);
107 { 3, 2.0F
, "quarts", "oil" },
108 { 2, -12.8F
, "degrees", "" },
110 { 3, 10.0F
, "LBS", "fertilizer" },
111 { 3, 100.0F
, "rgs", "energy" },
112 { -1, 0.0F
, "", "" }};
115 char units
[21], item
[21];
116 while (!feof (in
) && !ferror (in
))
120 if (rounds
++ >= sizeof (ok
) / sizeof (ok
[0]))
124 units
[0] = item
[0] = '\0';
125 count
= fscanf (in
, "%f%20s of %20s", &quant
, units
, item
);
126 (void) fscanf (in
, "%*[^\n]");
127 fprintf (out
, "count = %d, quant = %f, item = %.21s, units = %.21s\n",
128 count
, quant
, item
, units
);
129 if (count
!= ok
[rounds
-1].count
|| quant
!= ok
[rounds
-1].quant
130 || strcmp (item
, ok
[rounds
-1].item
)
131 || strcmp (units
, ok
[rounds
-1].units
))
136 fprintf (out
, "Residual: \"%s\"\n", fgets (buf
, sizeof (buf
), in
));
137 if (strcmp (buf
, ""))