1 /* Copyright (C) 2008-2022 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, see
16 <https://www.gnu.org/licenses/>. */
18 /* This test exercises the deprecated GNU %as, %aS, and %a[...] scanf
19 modifiers, which are not available to programs compiled as C99
20 anymore; therefore, this file is compiled with -std=gnu89 and C99
21 syntax must not be used. */
29 #if !__GLIBC_USE_DEPRECATED_SCANF
30 # error "This file should be compiled with deprecated scanf"
36 printf ("test at line %d failed\n", __LINE__); \
39 static int __attribute__ ((format (scanf
, 2, 3)))
40 xsscanf (const char *str
, const char *fmt
, ...)
44 int ret
= vsscanf (str
, fmt
, ap
);
49 static int __attribute__ ((format (scanf
, 1, 2)))
50 xscanf (const char *fmt
, ...)
54 int ret
= vscanf (fmt
, ap
);
59 static int __attribute__ ((format (scanf
, 2, 3)))
60 xfscanf (FILE *f
, const char *fmt
, ...)
64 int ret
= vfscanf (f
, fmt
, ap
);
79 if (xsscanf (" 0.25s x", "%e%3c", &f
, c
) != 2)
81 else if (f
!= 0.25 || memcmp (c
, "s x", 3) != 0)
83 if (xsscanf (" 1.25s x", "%as%2c", &sp
, c
) != 2)
87 if (strcmp (sp
, "1.25s") != 0 || memcmp (c
, " x", 2) != 0)
89 memset (sp
, 'x', sizeof "1.25s");
92 if (xsscanf (" 2.25s x", "%las%2c", &d
, c
) != 2)
94 else if (d
!= 2.25 || memcmp (c
, " x", 2) != 0)
96 if (xsscanf (" 3.25S x", "%4aS%3c", &lsp
, c
) != 2)
100 if (wcscmp (lsp
, L
"3.25") != 0 || memcmp (c
, "S x", 3) != 0)
102 memset (lsp
, 'x', sizeof L
"3.25");
105 if (xsscanf ("4.25[0-9.] x", "%a[0-9.]%8c", &sp
, c
) != 2)
109 if (strcmp (sp
, "4.25") != 0 || memcmp (c
, "[0-9.] x", 8) != 0)
111 memset (sp
, 'x', sizeof "4.25");
114 if (xsscanf ("5.25[0-9.] x", "%la[0-9.]%2c", &d
, c
) != 2)
116 else if (d
!= 5.25 || memcmp (c
, " x", 2) != 0)
119 const char *tmpdir
= getenv ("TMPDIR");
120 if (tmpdir
== NULL
|| tmpdir
[0] == '\0')
123 char fname
[strlen (tmpdir
) + sizeof "/tst-scanf16.XXXXXX"];
124 sprintf (fname
, "%s/tst-scanf16.XXXXXX", tmpdir
);
126 /* Create a temporary file. */
127 int fd
= mkstemp (fname
);
131 FILE *fp
= fdopen (fd
, "w+");
136 if (fputs (" 1.25s x", fp
) == EOF
)
138 if (fseek (fp
, 0, SEEK_SET
) != 0)
140 if (xfscanf (fp
, "%as%2c", &sp
, c
) != 2)
144 if (strcmp (sp
, "1.25s") != 0 || memcmp (c
, " x", 2) != 0)
146 memset (sp
, 'x', sizeof "1.25s");
150 if (freopen (fname
, "r", stdin
) == NULL
)
154 if (xscanf ("%as%2c", &sp
, c
) != 2)
158 if (strcmp (sp
, "1.25s") != 0 || memcmp (c
, " x", 2) != 0)
160 memset (sp
, 'x', sizeof "1.25s");