Make unistd.h pre-c((-safe.
[glibc.git] / stdio-common / tstscanf.c
blob123d733e3f2fdc1caa6423934736a9d15758e9cc
1 /* Copyright (C) 1991,92,1996-2001,2007 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 Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the 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 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 #ifdef BSD
20 #include </usr/include/stdio.h>
21 #else
22 #include <stdio.h>
23 #endif
24 #include <math.h>
25 #include <stdlib.h>
26 #include <string.h>
29 int
30 main (int argc, char **argv)
32 char buf[BUFSIZ];
33 FILE *in = stdin, *out = stdout;
34 int x;
35 int result = 0;
37 if (sscanf ("0", "%d", &x) != 1)
39 fputs ("test failed!\n", stdout);
40 result = 1;
43 if (sscanf ("08905x", "%9[0-9]", buf) != 1
44 || strcmp (buf, "08905") != 0)
46 fputs ("test failed!\n", stdout);
47 result = 1;
50 if (sscanf ("", "%10[a-z]", buf) != EOF)
52 fputs ("test failed!\n", stdout);
53 result = 1;
56 sscanf ("conversion] Zero flag Ze]ro#\n", "%*[^]] %[^#]\n", buf);
57 if (strcmp (buf, "] Zero flag Ze]ro") != 0)
59 fputs ("test failed!\n", stdout);
60 result = 1;
63 if (argc == 2 && !strcmp (argv[1], "-opipe"))
65 out = popen ("/bin/cat", "w");
66 if (out == NULL)
68 perror ("popen: /bin/cat");
69 result = 1;
72 else if (argc == 3 && !strcmp (argv[1], "-ipipe"))
74 sprintf (buf, "/bin/cat %s", argv[2]);
75 in = popen (buf, "r");
76 if (in == NULL)
78 perror ("popen: /bin/cat");
79 result = 1;
84 char name[50];
85 fprintf (out,
86 "sscanf (\"thompson\", \"%%s\", name) == %d, name == \"%s\"\n",
87 sscanf ("thompson", "%s", name),
88 name);
89 if (strcmp (name, "thompson") != 0)
91 fputs ("test failed!\n", stdout);
92 result = 1;
96 fputs ("Testing scanf (vfscanf)\n", out);
98 fputs ("Test 1:\n", out);
100 int n, i;
101 float x;
102 char name[50];
103 n = fscanf (in, "%d%f%s", &i, &x, name);
104 fprintf (out, "n = %d, i = %d, x = %f, name = \"%.50s\"\n",
105 n, i, x, name);
106 if (n != 3 || i != 25 || x != 5.432F || strcmp (name, "thompson"))
108 fputs ("test failed!\n", stdout);
109 result = 1;
112 fprintf (out, "Residual: \"%s\"\n", fgets (buf, sizeof (buf), in));
113 if (strcmp (buf, "\n"))
115 fputs ("test failed!\n", stdout);
116 result = 1;
118 fputs ("Test 2:\n", out);
120 int i;
121 float x;
122 char name[50];
123 (void) fscanf (in, "%2d%f%*d %[0123456789]", &i, &x, name);
124 fprintf (out, "i = %d, x = %f, name = \"%.50s\"\n", i, x, name);
125 if (i != 56 || x != 789.0F || strcmp (name, "56"))
127 fputs ("test failed!\n", stdout);
128 result = 1;
131 fprintf (out, "Residual: \"%s\"\n", fgets (buf, sizeof (buf), in));
132 if (strcmp (buf, "a72\n"))
134 fputs ("test failed!\n", stdout);
135 result = 1;
137 fputs ("Test 3:\n", out);
139 static struct {
140 int count;
141 float quant;
142 const char *units;
143 const char *item;
144 } ok[] = {
145 { 3, 2.0F, "quarts", "oil" },
146 { 2, -12.8F, "degrees", "" },
147 { 0, 0.0F, "", "" },
148 { 3, 10.0F, "LBS", "fertilizer" },
149 { 3, 100.0F, "rgs", "energy" },
150 { -1, 0.0F, "", "" }};
151 size_t rounds = 0;
152 float quant;
153 char units[21], item[21];
154 while (!feof (in) && !ferror (in))
156 int count;
158 if (rounds++ >= sizeof (ok) / sizeof (ok[0]))
160 fputs ("test failed!\n", stdout);
161 result = 1;
164 quant = 0.0;
165 units[0] = item[0] = '\0';
166 count = fscanf (in, "%f%20s of %20s", &quant, units, item);
167 (void) fscanf (in, "%*[^\n]");
168 fprintf (out, "count = %d, quant = %f, item = %.21s, units = %.21s\n",
169 count, quant, item, units);
170 if (count != ok[rounds-1].count || quant != ok[rounds-1].quant
171 || strcmp (item, ok[rounds-1].item)
172 || strcmp (units, ok[rounds-1].units))
174 fputs ("test failed!\n", stdout);
175 result = 1;
179 buf[0] = '\0';
180 fprintf (out, "Residual: \"%s\"\n", fgets (buf, sizeof (buf), in));
181 if (strcmp (buf, ""))
183 fputs ("test failed!\n", stdout);
184 result = 1;
187 if (out != stdout)
188 pclose (out);
190 fputs ("Test 4:\n", out);
192 int res, val, n;
194 res = sscanf ("-242", "%3o%n", &val, &n);
195 printf ("res = %d, val = %d, n = %d\n", res, val, n);
196 if (res != 1 || val != -20 || n != 3)
198 fputs ("test failed!\n", stdout);
199 result = 1;
203 fputs ("Test 5:\n", out);
205 double a = 0, b = 0;
206 int res, n;
208 res = sscanf ("1234567", "%3lg%3lg%n", &a, &b, &n);
209 printf ("res = %d, a = %g, b = %g, n = %d\n", res, a, b, n);
211 if (res != 2 || a != 123 || b != 456 || n != 6)
213 fputs ("test failed!\n", stdout);
214 result = 1;
217 res = sscanf ("0", "%lg", &a);
218 printf ("res = %d, a = %g\n", res, a);
220 if (res != 1 || a != 0)
222 fputs ("test failed!\n", stdout);
223 result = 1;
226 res = sscanf ("1e3", "%lg%n", &a, &n);
227 printf ("res = %d, a = %g, n = %d\n", res, a, n);
229 if (res != 1 || a != 1000 || n != 3)
231 fputs ("test failed!\n", stdout);
232 result = 1;
236 fputs ("Test 6:\n", stdout);
238 char *p = (char *) -1;
239 int res;
241 sprintf (buf, "%p", NULL);
242 res = sscanf (buf, "%p", &p);
243 printf ("sscanf (\"%s\", \"%%p\", &p) = %d, p == %p\n", buf, res, p);
245 if (res != 1 || p != NULL)
247 fputs ("test failed!\n", stdout);
248 result = 1;
252 fputs ("Test 7:\n", stdout);
254 short a[2] = { -1, -1 };
255 int res;
257 res = sscanf ("32767 1234", "%hd %hd", &a[0], &a[1]);
258 printf ("res = %d, a[0] = %d, a[1] = %d\n", res, a[0], a[1]);
260 if (res != 2 || a[0] != 32767 || a[1] != 1234)
262 fputs ("test failed!\n", stdout);
263 result = 1;
267 fputs ("Test 8:\n", stdout);
269 double d = 123456.789;
270 int res;
272 res = sscanf ("0x1234", "%lf", &d);
273 printf ("res = %d, d = %f\n", res, d);
275 if (res != 1 || d != 4660)
277 fputs ("test failed!\n", stdout);
278 result = 1;
282 fputs ("Test 9:\n", stdout);
284 /* From PR libc/1313 reported by Ben Caradoc-Davies <bmcd@physics.otago.ac.nz>. */
285 float value;
286 int res;
288 res = sscanf ("0123", "%2f", &value);
289 if (res != 1 || value != 1.0)
291 fputs ("test failed!\n", stdout);
292 result = 1;
296 fputs ("Test 10:\n", stdout);
298 float value;
299 int res;
301 res = sscanf ("--", "%f", &value);
302 if (res != 0)
304 fputs ("test failed!\n", stdout);
305 result = 1;
309 fputs ("Test 11:\n", stdout);
311 char uart[50];
312 int res;
314 res = sscanf ("uart:16550A tx:0", "uart:%31s tx:%*u", uart);
315 if (res != 1)
317 fputs ("test failed!\n", stdout);
318 result = 1;
322 fputs ("Test 12:\n", stdout);
324 char uart[50];
325 int res;
327 res = sscanf ("uart:16550A", "uart:%31s tx:%*u", uart);
328 if (res != 1)
330 fputs ("test failed!\n", stdout);
331 result = 1;
335 fputs ("Test 13:\n", stdout);
337 float value;
338 int res;
340 res = sscanf ("-InF", "%f", &value);
341 if (res != 1 || isinf (value) != -1)
343 fputs ("test failed!\n", stdout);
344 result = 1;
347 res = sscanf ("+InfiNiTY", "%f", &value);
348 if (res != 1 || isinf (value) != 1)
350 fputs ("test failed!\n", stdout);
351 result = 1;
355 return result;